/** * Connected-client commands over `/api//clients` — the org's MCP OAuth * clients plus messaging identities. Revoke kills an MCP client's tokens and * live sessions; messaging clients have no revoke (they are platform users). */ import type { CloudCommandOptions } from "./_lib/cloud-options.js"; export declare function clientsListCommand(options?: CloudCommandOptions & { agent?: string; }): Promise; export declare function clientsRevokeCommand(clientId: string, options?: CloudCommandOptions & { yes?: boolean; }): Promise; //# sourceMappingURL=clients.d.ts.map