import { Catalox } from "../catalox/catalox.js"; import type { StackLoggingOptions } from "@x12i/logxer"; import type { LocalFileStore } from "./local-file-store.js"; export type CataloxLocalRuntimeConfig = { store: LocalFileStore; logging?: StackLoggingOptions; }; /** Wire a {@link Catalox} instance from a loaded {@link LocalFileStore} (no Firebase). */ export declare function wireCataloxFromLocalStore(config: CataloxLocalRuntimeConfig): Catalox; //# sourceMappingURL=wire-local-catalox.d.ts.map