import type { Chunk, ChunkOptions } from "./types.js"; /** * Split a video file into segments of `videoSeconds` duration each. * * Uses ffprobe to detect duration and ffmpeg to split via stream copy. * Requires ffmpeg/ffprobe to be installed on the system. * * If the video is shorter than `videoSeconds`, returns a single chunk * with label "full". */ export declare function chunkVideo(filePath: string, opts?: ChunkOptions): Promise; //# sourceMappingURL=video.d.ts.map