import * as React from 'react'; export interface Props { /** * Component's HTML Element * * @default 'button' */ component?: string; /** * Highlights button as active * * @default false */ active?: boolean; /** * Makes strong segmented button (should be used within ``) * * @default false */ strong?: boolean; /** * Makes segmented button rounded (should be used within ``) * * @default false */ rounded?: boolean; } interface SegmentedButtonProps {} interface SegmentedButtonProps extends React.HTMLAttributes {} interface SegmentedButtonProps extends Props {} declare const SegmentedButton: React.FunctionComponent; export default SegmentedButton;