import type { Styled } from '../../hooks/useStyled'; import type { CLASSES } from '../vars'; interface FormErrorProps { namespace: string; styled: Styled; visible: boolean; message: string; invalid: 'warning' | 'error'; onAfterLeave: () => void; } export declare function FormError(props: FormErrorProps): React.ReactElement | null; export {};