import type { TVideoFrameSource } from "../../vue/video/types.js"; export type YtDlpVideoFrameSourceOptions = Readonly<{ ytDlpPath?: string; ffmpegPath?: string; live?: boolean; realtime?: boolean; maxFrameBytes?: number; maxSourceHeight?: number; format?: string; }>; export declare function createYtDlpVideoFrameSource(options?: YtDlpVideoFrameSourceOptions): TVideoFrameSource;