@vnmfify/core
Version:
```shell npm i @vnmfify/core -S ```
12 lines (11 loc) • 386 B
TypeScript
/// <reference types="react" />
import { RadioGroupDirection } from "./radio-group.shared";
interface RadioGroupContextValue {
value?: any;
disabled?: boolean;
direction?: RadioGroupDirection;
size?: number;
onChange?(value: any): void;
}
declare const RadioGroupContext: import("react").Context<RadioGroupContextValue>;
export default RadioGroupContext;