import type { Jwk } from '@web5/crypto'; import type { Web5PlatformAgent } from './types/agent.js'; import { AgentDataStore, DataStoreDeleteParams, DataStoreGetParams, DataStoreListParams, DataStoreSetParams, DwnDataStore, InMemoryDataStore } from './store-data.js'; export declare class DwnKeyStore extends DwnDataStore implements AgentDataStore { protected name: string; protected _recordProtocolDefinition: import("./types/dwn.js").DwnProtocolDefinition; /** * Properties to use when writing and querying Private Key records with the DWN store. */ protected _recordProperties: { dataFormat: string; protocol: string; protocolPath: string; schema: string | undefined; }; delete(params: DataStoreDeleteParams): Promise; get(params: DataStoreGetParams): Promise; set(params: DataStoreSetParams): Promise; list(params: DataStoreListParams): Promise; protected getAllRecords({ agent, tenantDid }: { agent: Web5PlatformAgent; tenantDid: string; }): Promise; } export declare class InMemoryKeyStore extends InMemoryDataStore implements AgentDataStore { protected name: string; delete(params: DataStoreDeleteParams): Promise; get(params: DataStoreGetParams): Promise; list(params: DataStoreListParams): Promise; set(params: DataStoreSetParams): Promise; } //# sourceMappingURL=store-key.d.ts.map