import * as React from 'react'; export interface Props { /** * Component's HTML Element * * @default 'button' */ component?: string | React.ComponentType; /** * Highlights button as active * * @default false */ active?: boolean; } // @ts-ignore interface SegmentedButtonProps extends Omit, keyof Props>, Props { ref?: React.Ref; } declare const SegmentedButton: React.ComponentType; export default SegmentedButton;