import { FormErrorMessageProps as ChakraFormErrorMessageProps } from '@chakra-ui/react'; export type FormErrorMessageProps = ChakraFormErrorMessageProps; /** * @precondition This element should be instantiated as a child of ChakraUI's * `FormControl` element, and `FormControl` must have an `isInvalid = true` prop * before this element will be displayed. * * Used to provide feedback about an invalid input, and suggest clear instructions on how to fix it. */ export declare const FormErrorMessage: ({ children, ...props }: FormErrorMessageProps) => JSX.Element;