/** * The general-purpose RadioButton component. * This component turns on/off the label depends on the prop: label. * * Also extends the props of `` element. * * @see https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input/radio */ export declare const RadioButton: import("react").ForwardRefExoticComponent<{ label?: string; checked?: boolean | undefined; disabled?: boolean | undefined; } & Omit, HTMLInputElement>, "ref">, "disabled" | "checked"> & import("react").RefAttributes>;