interface LyricsElementData { /** Seconds of starting timestamp */ startsAt: number; /** Seconds of ending timestamp */ endsAt: number; } export interface LyricsLineData extends LyricsElementData { /** Lyrics line content */ content: LyricsInlineData[]; } export interface LyricsInlineData extends LyricsElementData { /** Lyrics inline content */ content: string; } export default function parseLyrics(source: string): LyricsLineData[]; export {};