import { RadioProps } from "./types"; /** * Handles props for Radios in context with Fieldset and RadioGroup */ export declare const useRadio: (props: RadioProps) => { readOnly: boolean | undefined; inputProps: { name: string | undefined; defaultChecked: boolean | undefined; checked: boolean | undefined; onChange: (event: React.ChangeEvent) => void; onClick: (event: React.MouseEvent) => void; required: boolean | undefined; type: string; id: string; "aria-invalid"?: boolean; "aria-describedby"?: string; disabled?: boolean; }; showErrorMsg: boolean; hasError: boolean; errorId: string; inputDescriptionId: string; size: "small" | "medium"; };