export interface RadioButtonProps { id?: string; name: string; checked?: boolean; onChange?: (value: T) => void; disabled?: boolean; value?: T; readOnly?: boolean; className?: string; 'aria-describedby'?: string; } export default function RadioButton({ id, value, name, checked, onChange, disabled, readOnly, className, 'aria-describedby': ariaDescribedBy, }: RadioButtonProps): import("react").JSX.Element; //# sourceMappingURL=RadioButton.d.ts.map