import { FieldErrors, Path } from 'react-hook-form'; import { TagStyle } from '@team-devmonster/react-tags'; import { FormValues } from './type'; export interface ErrorTextProps { errors: FieldErrors; name: Path; style?: TagStyle; message?: string; } export declare function ErrorText({ errors, name, style, message }: ErrorTextProps): import("react/jsx-runtime").JSX.Element;