/// import { FlowindSize } from '../../styles'; interface RadioGroupContextValue { size: FlowindSize; value: string; onChange: (event: React.ChangeEvent) => void; name: string; } export declare const RadioGroupProvider: import("react").Provider; export declare const useRadioGroupContext: () => RadioGroupContextValue; export {};