import { Stream } from 'stream'; declare const isFilePath: (url: string) => boolean; declare const writeFileWithStream: (stream: Stream, videoPath: string) => Promise; declare const copyLocalFile: (targetPath: string, cacheDir: string) => Promise; declare const writeSubtitles: (subtitleFile: string, formattedSubtitles: string[], scriptLinescLength: number) => Promise; export { writeFileWithStream, writeSubtitles, copyLocalFile, isFilePath };