import type { Snippet } from 'svelte'; type Status = 'success' | 'error' | 'info' | 'warning' | 'empty'; interface StatusPageProps { status?: Status; title?: string; description?: string; primaryLabel?: string; secondaryLabel?: string; class?: string; extra?: Snippet; onprimary?: () => void; onsecondary?: () => void; } declare const StatusPage: import("svelte").Component; type StatusPage = ReturnType; export default StatusPage;