import type { LogItem } from '../../types/index.js';
import { Output } from './output.js';
export declare class LineOutput extends Output {
    prepareData(log: LogItem): string[];
    write(row: string[]): void;
}
