import type { Router } from '../../router.svelte'; interface Props { params: Record; location: { pathname: string; search: string; hash?: string; params: Record; url?: { href: string; }; }; router: Router; } declare const NotFoundPage: import("svelte").Component; type NotFoundPage = ReturnType; export default NotFoundPage;