export interface StoredKey { apiKey: string; createdAt: string; updatedAt: string; } export interface KeyStore { readonly backendName: string; readonly backendPath: string; load(accountId: string): Promise; save(accountId: string, apiKey: string): Promise; delete(accountId: string): Promise; } export declare function selectKeyStore(): KeyStore; export declare function _resetKeyStoreForTests(): void; //# sourceMappingURL=key-store.d.ts.map