import * as React from 'react'; import { FormControlProps } from './FormControlProps'; /** * @internal */ export type FormControlContextValue = undefined | (Pick & { labelId: string; htmlFor: string | undefined; 'aria-describedby': string | undefined; setHelperText: (node: null | HTMLElement) => void; registerEffect: () => () => void; }); declare const FormControlContext: React.Context; export default FormControlContext;