/// /** * Props for the EditToggle component * * @internal */ export interface EditToggleProps { /** * Whether the edit mode is currently active */ isEditMode: boolean; /** * Whether the history is currently enabled */ isHistoryEnabled: boolean; /** * Color of the edit toggle button */ color?: string; /** * Callback function called when the edit toggle button is clicked */ onToggleClick: () => void; } /** * Edit toggle button component for dashboard toolbar. * Displays appropriate icon and tooltip based on edit mode state. */ export declare const EditToggle: import("react").NamedExoticComponent;