import type { AdminClient } from './client.js'; import type { ResponseOf } from './spec-types.js'; import type { ApiKeyRecord, AddApiKeyInput } from './types.js'; export declare const createKeysApi: (client: AdminClient) => { add: (input: AddApiKeyInput) => Promise; list: () => Promise; remove: (id: string) => Promise>; test: (id: string) => Promise>; }; //# sourceMappingURL=keys.d.ts.map