import React from 'react'; import { type DefaultRadioContextValue } from '../../Radio.context'; export type RadioOwnGroupProps = { orientation?: 'horizontal' | 'vertical'; wrap?: boolean; disabled?: boolean; name?: string; value?: Value; defaultValue?: Value; onChange?: (value?: Value) => void; }; export type RadioGroupProps = React.PropsWithChildren>; type RadioComponent = (props: RadioGroupProps) => React.ReactNode; export declare const RadioGroup: RadioComponent; export {}; //# sourceMappingURL=RadioGroup.d.ts.map