export declare const DEFAULT_TRUNCATED_LINE_MARKER = " [oversized line truncated] "; export declare const DEFAULT_MAX_PENDING_LINE_LENGTH: number; export declare function boundPendingLine(value: string, marker?: string, maxLength?: number): string; export declare function splitCompleteLines(value: string): { complete: string[]; pending: string; };