import { type DrizzleExecutor } from "../../drizzle.js"; import { type ServerStepRecord } from "./serverStepRecord.js"; /** Reads and validates the complete durable server-onboarding snapshot for setup actions. */ export declare function readServerSnapshot(executor: DrizzleExecutor): Promise<{ schemaVersion: number; bootstrapAccountId: string | null; bootstrapAdminUserId: string | null; registrationEnabled: number | null; steps: ServerStepRecord; }>; //# sourceMappingURL=readServerSnapshot.d.ts.map