import { IOSLog } from './ios-log';
import type { LogEntry } from '../../commands/types';
type TSerializedEntry = [string, number];
export declare abstract class LineConsumingLog extends IOSLog<string, TSerializedEntry> {
    protected _serializeEntry(value: string): TSerializedEntry;
    protected _deserializeEntry(value: TSerializedEntry): LogEntry;
}
export {};
//# sourceMappingURL=line-consuming-log.d.ts.map