import type { ReactNode } from 'react'; import type { DefaultProps, LabelRequired } from '../../types'; import type { MergeRight } from '../../utilities'; import { type InputProps } from '../input/input'; export type RadioProps = MergeRight, { /** * Optional aria-label **/ 'aria-label'?: string; /** * Radio label */ label?: ReactNode; /** * Description for field */ description?: ReactNode; /** * Value of the `input` element */ value?: InputProps['value']; /** * Error message for field */ error?: ReactNode; } & LabelRequired>; /** * Radio used to select multiple options. * * @example * */ export declare const Radio: import("react").ForwardRefExoticComponent>; //# sourceMappingURL=radio.d.ts.map