import type { RequestFn } from "../http.js"; import type { ApiKey, ApiKeyCreated, CreateApiKeyInput } from "../types.js"; export declare class ApiKeysClient { private readonly request; constructor(request: RequestFn); list(projectId: string): Promise; create(projectId: string, input: CreateApiKeyInput): Promise; delete(projectId: string, apiKeyId: string): Promise; } //# sourceMappingURL=api-keys.d.ts.map