import * as React from 'react'; import { DemoComponentProps } from '../types'; type ControlSize = '24' | '30' | '36' | '42' | '48'; interface FormContextState { textValue: string; isInvalid: boolean; isDisabled: boolean; size: ControlSize; checkboxGroupValue: number[]; acceptCheckboxValue: boolean; } export declare class FormContext extends React.Component { static displayName: string; state: { textValue: string; isInvalid: boolean; isDisabled: boolean; size: ControlSize; checkboxGroupValue: number[]; acceptCheckboxValue: boolean; }; render(): React.JSX.Element; } export {}; //# sourceMappingURL=FormContext.d.ts.map