export declare function startTranscript(dir: string, model: string, continued?: boolean): Promise; export interface TranscriptHandle { path(): string; appendUser(userInput: string): Promise; appendQueuedUser(userInput: string): Promise; appendTurn(userInput: string, assistantText: string): Promise; rotateOnClear(): Promise; appendEnded(): Promise; } export declare function initTranscript(getModel: () => string): Promise;