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