import { ChangeEvent, InputHTMLAttributes } from 'react'; export type Props = { name: string; value: string; label?: string; checked?: boolean; disabled?: boolean; onChange?: (e: ChangeEvent) => void; } & InputHTMLAttributes; declare const Radio: import("react").ForwardRefExoticComponent<{ name: string; value: string; label?: string; checked?: boolean; disabled?: boolean; onChange?: (e: ChangeEvent) => void; } & InputHTMLAttributes & import("react").RefAttributes>; export { Radio }; //# sourceMappingURL=Radio.component.d.ts.map