import type { DataStore } from '@openleash/core'; /** * Ensure every org has a `slug`. Runs on every startup; a no-op once all * orgs have slugs. Introduced when slugs became required (phase 1 of the * scope-aware GUI refactor). Any org still missing a slug gets one derived * from its display_name, with a numeric suffix on collision. */ export declare function migrateOrgSlugs(store: DataStore): { migrated: number; }; export declare function bootstrapState(rootDir: string, store?: DataStore): void; //# sourceMappingURL=bootstrap.d.ts.map