import { ParsingError } from './errors.js'; import { type CueSheet } from './types.js'; interface ParserOptions { fatal?: boolean; checkAtLeastOneTrack?: boolean; strictFileCommandPosition?: boolean; /** If `true`, it disallows performer string with more that 80 characters. */ strictPerformerLength?: boolean; /** If `true`, it disallows song writer string with more that 80 characters. */ strictSongWriterLength?: boolean; /** If `true`, it disallows title string with more that 80 characters. */ strictTitleLength?: boolean; } export declare function parse(source: string, options?: ParserOptions): { sheet: CueSheet; errors: ParsingError[]; }; export {};