import React from 'react'; type NotFoundPageProps = {} & React.HTMLAttributes; /** * A component that shows a 404 error page */ export declare function NotFoundPage({ className, children, ...rest }: NotFoundPageProps): JSX.Element; export {};