/// /** * FormControl provides context such as isInvalid, isDisabled, and isRequired to form elements. * By passing the isRequired props, the Input field has aria-required set to true, and the FormLabel will show a red asterisk. * See Formik example in docs: * https://chakra-ui.com/docs/form/form-control */ export declare function FormControl({ ...props }: any): JSX.Element; export declare function FormLabel({ ...props }: any): JSX.Element; export declare function FormErrorMessage({ ...props }: any): JSX.Element; export declare function FormHelperText({ ...props }: any): JSX.Element; //# sourceMappingURL=FormControl.d.ts.map