import type { CatalogId } from "@x12i/catalox-contracts/ids.js"; import type { IdentityCatalogBindingRecord } from "@x12i/catalox-contracts/bindings.js"; import { MongoStore } from "./mongo-store.js"; export declare class IdentityBindingStore { private readonly store; constructor(store: MongoStore); private col; get(bindingId: string): Promise; listAll(): Promise; listByCatalog(catalogId: CatalogId): Promise; upsert(record: IdentityCatalogBindingRecord): Promise; delete(bindingId: string): Promise; } //# sourceMappingURL=identity-binding-store.d.ts.map