import type { ScriptEvent } from './types.js'; export interface ScriptEventLogOptions { path?: string; maxBytes?: number; maxFiles?: number; } /** * Returns a sink that writes script events as JSONL to a file. * When the file exceeds the size cap, it is truncated by deletion. */ export declare function createScriptEventFileSink(options?: ScriptEventLogOptions): (event: ScriptEvent) => void; //# sourceMappingURL=script-event-log.d.ts.map