import { default as React } from 'react'; export type FormErrorProps = { children?: React.ReactNode | undefined; className?: string | undefined; id?: string | undefined; type?: "error" | "warn"; }; export declare const FormError: ({ type, children, ...otherProps }: FormErrorProps) => React.JSX.Element; //# sourceMappingURL=Error.d.ts.map