/** * The general-purpose RadioGroup component. * * The RadioGroup component is designed to ensure that only one radio button can be selected at a time within the * group, simplifying the state management and data handling for forms. * * This component will wrap all radio buttons in a group and control their check state. * * Also extends the props of `
` element. * * @see https://developer.mozilla.org/en-US/docs/Web/HTML/Element/div */ export declare const RadioGroup: import("react").ForwardRefExoticComponent & Omit, HTMLDivElement>, "ref">, "onChange"> & import("react").RefAttributes>;