import React from 'react';
type ErrorProps = {
  message?: string;
};
declare const Error: React.FC<ErrorProps>;
export default Error;
