import { AriaButtonProps } from 'react-aria'; import React from 'react'; type SegmentedButtonProps = { label?: string; selected?: boolean; icon?: React.ReactNode; noCheckmark?: boolean; } & Omit, 'children'> & AriaButtonProps; declare const SegmentedButton: (props: SegmentedButtonProps) => import("react/jsx-runtime").JSX.Element; export { SegmentedButton }; //# sourceMappingURL=SegmentedButton.d.ts.map