/** * Parser for plain text transcripts. * Format: "> human" / "assistant" blocks separated by blank lines. */ import type { ParseResult } from './types.js'; export declare function parsePlaintext(input: string): ParseResult; //# sourceMappingURL=plaintext-parser.d.ts.map