import * as React from 'react'; type Props = { onClick: () => void; }; declare const Error: ({ onClick }: Props) => React.JSX.Element; export default Error;