export interface DebugLogOptions { directory: string; now?: () => number; } export declare class DebugLog { #private; readonly directory: string; constructor(options: DebugLogOptions); flush(): Promise; record(type: string, data: unknown): Promise; }