import type { AppId } from "@x12i/catalox-contracts/ids.js"; import type { AppRecord } from "@x12i/catalox-contracts/apps.js"; import { FirestoreStore } from "./firestore-store.js"; export declare class AppStore { private readonly store; constructor(store: FirestoreStore); private docRef; get(appId: AppId): Promise; upsert(record: AppRecord): Promise; listAll(): Promise; } //# sourceMappingURL=app-store.d.ts.map