export interface VideoMediaProbe { durationSeconds?: number; sizeBytes?: number; videoCodec?: string; width?: number; height?: number; frameRate?: string; /** Duration of the video stream alone, seconds (per-stream; for A/V-sync QC). */ videoDurationSeconds?: number; audioPresent: boolean; audioCodec?: string; audioSampleRate?: number; audioChannels?: number; /** Duration of the audio stream alone, seconds (per-stream; for A/V-sync QC). */ audioDurationSeconds?: number; } export declare function resolveProjectFinalPath(projectSlug: string, root: string): Promise; export declare function probeMedia(path: string, opts?: { ffprobeBin?: string; }): Promise; //# sourceMappingURL=final-media.d.ts.map