import { type CueSheet } from './types.js'; export interface DumperOptions { lineBreak?: '\n' | '\r\n'; indentKind?: ' ' | '\t'; indentSize?: number; } export declare function dump(sheet: CueSheet, options?: DumperOptions): string;