import type { ToolId } from '../editor/types'; export declare const TOOL_BUTTON_META: { id: ToolId; key: string; }[]; /** Static English fallbacks — used by Toolbar before React renders */ export declare const TOOL_BUTTONS: { id: ToolId; label: string; hint: string; key: string; }[]; export declare function useToolButtons(): { id: ToolId; key: string; label: string; hint: string; }[]; export declare function HelpModal({ onClose }: { onClose: () => void; }): import("react").JSX.Element;