import { HandleConnection } from '../types'; /** * @internal */ export declare function areConnectionMapsEqual(a?: Map, b?: Map): boolean; /** * We call the callback for all connections in a that are not in b * * @internal */ export declare function handleConnectionChange(a: Map, b: Map, cb?: (diff: HandleConnection[]) => void): void; export declare function getConnectionStatus(isValid: boolean | null): "valid" | "invalid" | null; //# sourceMappingURL=connections.d.ts.map