import type { AdminClient } from './client.js'; import type { ResponseOf } from './spec-types.js'; import type { ConnectionRecord, ConnectionStats } from './types.js'; export declare const createConnectionsApi: (client: AdminClient) => { list: () => Promise; stats: (id: string) => Promise; setBudget: (id: string, budgetLimit: number) => Promise>; suspend: (id: string) => Promise>; resume: (id: string) => Promise>; revoke: (id: string) => Promise>; }; //# sourceMappingURL=connections.d.ts.map