1 | import * as React from 'react';
|
2 | export interface RadioGroupContextValue {
|
3 | name: string | undefined;
|
4 | onChange: (event: React.ChangeEvent<HTMLInputElement>, value: string) => void;
|
5 | value: any;
|
6 | }
|
7 | /**
|
8 | * @ignore - internal component.
|
9 | */
|
10 | declare const RadioGroupContext: React.Context<RadioGroupContextValue | undefined>;
|
11 | export default RadioGroupContext;
|