import type { FC, Ref } from 'react'; import { type ButtonProps } from '../Button'; type SegmentedTabsTriggerButtonProps = Omit, 'children' | 'variant' | 'color' | 'size' | 'tabIndex'> & { ref?: Ref; }; export declare const SegmentedTabsTriggerButton: FC; export {};