type $$ComponentProps = { status: 'connecting' | 'connected' | 'disconnected'; resource?: string; lastEvent?: { type: string; timestamp?: number; } | null; showDetails?: boolean; }; declare const LiveIndicator: import("svelte").Component<$$ComponentProps, {}, "">; type LiveIndicator = ReturnType; export default LiveIndicator;