/// export type NotFoundPageProps = { /** * Картинка для 404 страницы */ imageSrc: string; /** * Ссылка на главную страницу */ mainPageHref: string; }; /** * Единая 404 страница */ export declare const NotFoundPage: ({ imageSrc, mainPageHref }: NotFoundPageProps) => JSX.Element;