import type { Snippet } from 'svelte'; interface MaintenancePageProps { title?: string; description?: string; eta?: string; primaryLabel?: string; secondaryLabel?: string; statusLabel?: string; class?: string; extra?: Snippet; onprimary?: () => void; onsecondary?: () => void; } declare const MaintenancePage: import("svelte").Component; type MaintenancePage = ReturnType; export default MaintenancePage;