import type { SiteDefaults } from "@aotter/mantle-spec"; import type { DatabaseDriver } from "../../domain/port/DatabaseDriver.js"; import type { Migration } from "../../domain/port/DatabaseDriver.js"; export declare function bootFingerprint(input: { readonly semanticFingerprint: string; readonly siteDefaults?: SiteDefaults; readonly schemaMigrations?: readonly Migration[]; }): Promise; export declare function isBootCurrent(db: DatabaseDriver, fingerprint: string): Promise; export declare function markBootCurrent(db: DatabaseDriver, fingerprint: string): Promise; /** Identity minted by the store itself; derivative caches use it as a namespace. */ export declare function readStoreInstanceId(db: DatabaseDriver): Promise; //# sourceMappingURL=bootState.d.ts.map