import { JsonToToonOptions } from './core.js'; export interface LogToToonOptions extends JsonToToonOptions { /** * Log format. Defaults to 'auto' which tries to detect Common/Combined Log * Format or NDJSON. `'clf'` accepts both Common and Combined variants. */ format?: 'auto' | 'clf' | 'combined' | 'json'; } export declare function logToToon(logData: string, options?: LogToToonOptions): string; //# sourceMappingURL=log.d.ts.map