import React from 'react'; import type { WsState } from '../ws-client.js'; interface StatusLineProps { connectionState: WsState; queuedCount: number; notificationCount: number; errorMessage?: string | null; } export declare function StatusLine({ connectionState, queuedCount, notificationCount, errorMessage, }: StatusLineProps): React.JSX.Element; export {};