import type { Command } from '../../editor/types'; import type { SceneHandle } from '../../editor/scene'; type CmdT = (key: string, opts?: Record) => string; export declare function commandLabel(cmd: Command, t: CmdT): string; export declare function HistoryPanel({ sceneRef }: { sceneRef: { current: SceneHandle | null; }; }): import("react").JSX.Element; export {};