import React from "react"; export type RadioGroupContextType = { name?: string; /** * Radio Components */ value?: string | number; /** * Value when want to use the Radio as a uncontrolled component */ defaultValue?: string | number; onChange?: (e: React.ChangeEvent) => void; }; export declare const RadioGroupContext: React.Context; export declare const useRadioProps: (props: any) => any;