import { StargateClient } from '@cosmjs/stargate'; export declare function shouldCacheStargateClient(url: string): boolean; export declare function disconnectStargateClient(client: Promise): void; export declare class StargateClientCache { private readonly maxSize; private readonly clients; private readonly entries; constructor(maxSize: number); get(url: string): Promise; evict(url: string, client?: Promise): void; release(client: Promise): void; clear(): void; private disconnectIfIdle; } //# sourceMappingURL=stargate.d.ts.map