/// interface ErrorProps { name?: string; children?: React.ReactNode; textColor?: string; message?: string; testID?: string; } export declare const InputErrorMessage: ({ name, children, message, textColor }: ErrorProps) => import("react/jsx-runtime").JSX.Element; export {};