import { FormHelperTextProps as ChakraFormHelperTextProps, ThemingProps } from '@chakra-ui/react'; export interface FormHelperTextProps extends ChakraFormHelperTextProps { /** * Variant of input message, determines the styling. */ variant?: ThemingProps<'Form'>['variant']; } /** * @precondition This element should be instantiated as a child of ChakraUI's `FormControl` element. * * An assistive component that conveys additional guidance about the field, such * as how it will be used and what types in values should be provided. */ export declare const FormHelperText: ({ children, ...props }: FormHelperTextProps) => JSX.Element;