/** Export format. `audio` is uncompressed `.wav`; `mp3` is the same track re-encoded. */ export declare const DubbingExportType: { readonly Video: "video"; readonly Audio: "audio"; readonly Mp3: "mp3"; readonly Srt: "srt"; }; export type DubbingExportType = (typeof DubbingExportType)[keyof typeof DubbingExportType];