import { TransportRecord, TransportOptions, ITransport } from '../types/index.js'; export interface FileTransportOptions extends TransportOptions { destination?: string; } export declare class FileTransport implements ITransport { readonly name = "file"; private buffer; private flushTimer?; private options; constructor(options?: FileTransportOptions); write(record: TransportRecord): void; flush(): Promise; close(): void; } //# sourceMappingURL=FileTransport.d.ts.map