//#region ../react-form/src/hooks/useRadioInput.d.ts type Value = string | number | boolean; type RadioGroupContextOptions = { value: Value; changeValue: (value: Value) => void; }; declare const RadioGroupContext: import("react").Context; type RadioInputHookOutput = { isSelected: boolean; changeValue: () => void; }; declare function useRadioInput(value: Value): RadioInputHookOutput; //#endregion export { RadioGroupContext, RadioGroupContextOptions, RadioInputHookOutput, useRadioInput }; //# sourceMappingURL=useRadioInput.d.mts.map