import { VideoConfig } from './config/config'; declare const downloadVideos: (searchTerms: string[], videoDuration: number | undefined, cacheDir: string, config: VideoConfig, progress: (progress: number) => void) => Promise; declare const copyClipToCache: (clipPath: string, cacheDir: string) => Promise<{ videoId: string; newPath: string; }>; export { downloadVideos, copyClipToCache };