import * as React from 'react'; type Props = { onValueChange: (value: string) => void; value: string; }; export type RadioButtonContextType = { value: string; onValueChange: (item: string) => void; } | null; export declare const RadioButtonContext: React.Context; export declare const RadioButtonGroup: React.FC>; export {}; //# sourceMappingURL=RadioButtonGroup.d.ts.map