import { type PropsWithChildren } from 'react'; export type SegmentedControlBaseProps = { value: Value; disabled?: boolean; onChange?: (event: React.ChangeEvent) => void; }; export declare function SegmentedControlBase({ children, value, onChange, disabled, ...restProps }: PropsWithChildren>): import("react/jsx-runtime").JSX.Element; export declare namespace SegmentedControlBase { var displayName: string; } //# sourceMappingURL=SegmentedControlBase.d.ts.map