import { Clip } from 'src/types';
export declare function setClip(clips?: Clip | Clip[]): {
    '@type': string;
    name: string;
    startOffset: number;
    url: string;
} | {
    '@type': string;
    name: string;
    startOffset: number;
    url: string;
}[] | undefined;
