export interface HistoryEvent { title: string; detail: string; } export declare class HistoryLog { events: HistoryEvent[]; add(title: string, detail: string): void; asMarkdown(): string; }