export interface SrtCue { index: number; startUs: number; endUs: number; text: string; } export declare function parseSrt(content: string): SrtCue[];