import type { PortableDid } from '@web5/dids'; import type { Web5PlatformAgent } from './types/agent.js'; import type { AgentDataStore, DataStoreDeleteParams, DataStoreGetParams, DataStoreListParams, DataStoreSetParams } from './store-data.js'; import { DwnDataStore, InMemoryDataStore } from './store-data.js'; export declare class DwnDidStore extends DwnDataStore implements AgentDataStore { protected name: string; protected _recordProtocolDefinition: import("./types/dwn.js").DwnProtocolDefinition; /** * Properties to use when writing and querying DID records with the DWN store. */ protected _recordProperties: { dataFormat: string; protocol: string; protocolPath: string; schema: string | undefined; }; delete(params: DataStoreDeleteParams): Promise; get(params: DataStoreGetParams): Promise; list(params: DataStoreListParams): Promise; set(params: DataStoreSetParams): Promise; protected getAllRecords({ agent, tenantDid }: { agent: Web5PlatformAgent; tenantDid: string; }): Promise; } export declare class InMemoryDidStore 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-did.d.ts.map