import * as React from 'react'; export interface RadioGroupContext { name: string; selected?: string; disabled: boolean; readonly: boolean; invalid: boolean; onChange: (next: string) => void; } export declare const RadioGroupContext: React.Context; //# sourceMappingURL=RadioGroupContext.d.ts.map