export declare class TranscriptStore { entries: string[]; flushed: boolean; append(entry: string): void; compact(keepLast?: number): void; replay(): string[]; flush(): void; }