export interface DebugWriter { writeLine: (line: string) => void; flush: () => void; } export declare function getDebugWriter(outputFile?: string): DebugWriter;