import React from 'react'; export interface NotFoundProps { router: { push: (pathname: string) => void; replace: (pathname: string) => void; }; } declare const NotFoundPage: React.FC; export default NotFoundPage;