import type { SegmentTabItem } from './SegmentTabs.js'; /** * CMP-0021 companion — overflow "+N" for dense admin tab rows (<1024px). * Kept Radix-free; menu is a native details/summary pattern. */ export interface SegmentTabsOverflowProps { readonly visibleTabs: readonly SegmentTabItem[]; readonly overflowTabs: readonly SegmentTabItem[]; readonly activeId: string; readonly onChange: (id: string) => void; readonly ariaLabel?: string; readonly overflowLabel?: string; readonly idPrefix?: string; readonly className?: string; } export declare function SegmentTabsOverflow({ visibleTabs, overflowTabs, activeId, onChange, ariaLabel, overflowLabel, idPrefix, className, }: SegmentTabsOverflowProps): JSX.Element; //# sourceMappingURL=SegmentTabsOverflow.d.ts.map