import React from 'react';
export interface ErrorProps {
    id?: string;
}
declare class Error extends React.Component<ErrorProps> {
    displayErrorMessage: (inputContext: any) => any;
    render(): any;
}
export default Error;
