import type { Snippet } from 'svelte'; interface UnauthorizedProps { title?: string; description?: string; actionLabel?: string; class?: string; icon?: Snippet; action?: Snippet; onaction?: () => void; } declare const Unauthorized: import("svelte").Component; type Unauthorized = ReturnType; export default Unauthorized;