interface constructVideoUrlProps { videoSrc: string; autoplay?: boolean; disableControls?: boolean; loop?: boolean; mute?: boolean; } export declare const constructVideoUrl: ({ videoSrc, autoplay, disableControls, loop, mute }: constructVideoUrlProps) => string; export {};