import { type RadioProps as RACRadioProps } from 'react-aria-components'; import type { AriaLabelingProps, CommonProps, StringLikeChildren } from '../types.js'; export interface RadioProps extends CommonProps, AriaLabelingProps, Pick { /** The label rendered next to the radio. */ children?: StringLikeChildren; } /** * Renders a single option within `RadioGroup`. * * See [radio group usage guidelines](https://ui.cimpress.io/components/radio-group/). */ declare const _Radio: (props: RadioProps & import("react").RefAttributes & import("../../with-style-props.js").StyleProps) => import("react").JSX.Element | null; export { _Radio as Radio }; //# sourceMappingURL=radio.d.ts.map