import type { HistoryMount } from '../surface/index.js'; import { type HistoryRecord } from '../wings/local-history/local-history.js'; import { type Translator } from '../locale/index.js'; import type { Overlay } from './overlay.js'; export interface HistoryPanelOptions { readonly history: HistoryMount; readonly surface: HTMLElement; readonly locale?: string; readonly translator?: Translator; readonly render: (record: HistoryRecord) => string; readonly sessionId?: string; } export declare function openHistoryPanel(options: HistoryPanelOptions): Overlay | null; //# sourceMappingURL=history.d.ts.map