import type { FC, Ref } from 'react'; import { type ButtonBaseProps } from '../ButtonBase'; /** * "More" button component for SegmentedControl. * * Used to show additional options or trigger a menu when there are too many items * to display in the segmented control. Uses compound pattern - pass icon and text as children. * Height matches SegmentedControlItem (28px) as per Figma design. */ export interface TabsButtonProps extends ButtonBaseProps { size?: 'small' | 'medium'; ref?: Ref; } export declare const TabsButton: FC;