import type { HttpTransport } from "../http"; import type { CreateApiKeyResponse, ListApiKeysResponse, RequestOptions, RevokeApiKeyResponse } from "../types"; export interface ListApiKeysParams { limit?: number; cursor?: string; status?: string; scope?: string; } export declare class ApiKeysClient { private readonly http; constructor(http: HttpTransport); create(request?: Record, options?: RequestOptions): Promise; list(params?: ListApiKeysParams, options?: RequestOptions): Promise; revoke(keyId: string, options?: RequestOptions): Promise; }