export type InputErrorSize = 'sm' | 'md' | 'lg'; export type InputErrorProps = { size?: InputErrorSize; message?: string; style?: React.CSSProperties; }; export declare const InputError: ({ size, message, style }: InputErrorProps) => import("react/jsx-runtime").JSX.Element;