import React from 'react'; import { ErrorObject, ValidationError } from '../../types'; export declare const formatError: (singleError: ValidationError) => string; interface Props { error: ErrorObject; } export declare const ErrorComponent: React.FunctionComponent; export {};