interface OfflineBannerProps { /** Force online/offline; when null, uses navigator.onLine */ forced?: boolean | null; title?: string; description?: string; /** Show a brief “Back online” toast when connection returns */ showReconnected?: boolean; reconnectedTitle?: string; reconnectedDescription?: string; sticky?: boolean; retryLabel?: string; class?: string; onretry?: () => void; } declare const OfflineBanner: import("svelte").Component; type OfflineBanner = ReturnType; export default OfflineBanner;