/** * Tab Visibility Overlay * * Checklist overlay for toggling which tabs are visible in the header. * Home tab is always visible and cannot be toggled. * * @since v2.4.22 */ import type React from 'react'; import type { Theme } from '../../themes/types.js'; import type { Tab } from '../layout/Header.js'; export interface TabVisibilityOverlayProps { tabs: Tab[]; hiddenTabs: Set; lockedTabs?: Set; onToggle: (tabId: string) => void; onClose: () => void; theme: Theme; } export declare function TabVisibilityOverlay({ tabs, hiddenTabs, lockedTabs, onToggle, onClose, theme }: TabVisibilityOverlayProps): React.ReactElement; //# sourceMappingURL=TabVisibilityOverlay.d.ts.map