import * as React from "react"; export interface IContext { value: string; onChange: (value?: string) => void; } declare const RadioGroupContext: React.Context; export default RadioGroupContext;