import type { Snippet } from 'svelte'; interface ErrorPageProps { code?: string | number; title?: string; description?: string; primaryLabel?: string; secondaryLabel?: string; requestId?: string; class?: string; extra?: Snippet; onprimary?: () => void; onsecondary?: () => void; } declare const ErrorPage: import("svelte").Component; type ErrorPage = ReturnType; export default ErrorPage;