import { FormControlProps, FormErrorMessageProps, FormLabelProps, HelpTextProps } from '@chakra-ui/react'; import React, { FC } from 'react'; export interface BaseProps extends Omit { name: string; label?: React.ReactNode; labelProps?: FormLabelProps; helperText?: React.ReactNode; helperTextProps?: HelpTextProps; errorMessageProps?: FormErrorMessageProps; } export declare const FormControl: FC; export default FormControl;