import type { ReactNode } from 'react'; import { type RadioGroupProps as RACRadioGroupProps } from 'react-aria-components'; import type { Responsive } from '../spacing/types.js'; import type { Direction, CommonProps, FieldProps } from '../types.js'; export interface RadioGroupProps extends CommonProps, FieldProps, Pick { /** Radio buttons belonging to the group. */ children: ReactNode; /** * Determines the direction in which radio buttons will be stacked. * @default 'vertical' */ direction?: Responsive; } /** * Allows users to select a single item from a visible list. * * See [radio group usage guidelines](https://ui.cimpress.io/components/radio-group/). */ declare const _RadioGroup: (props: RadioGroupProps & import("react").RefAttributes & import("../../with-style-props.js").StyleProps) => import("react").JSX.Element | null; export { _RadioGroup as RadioGroup }; //# sourceMappingURL=radio-group.d.ts.map