/** The bots.json path the daemon will load (same resolution as loadBotConfigs). */ export declare function resolveBotsConfigPath(): string | null; /** * Migrate every entry's legacy sandbox fields in `path`. Returns the appIds * that were migrated (empty = file untouched). Never throws on a malformed * file — migration must not brick daemon startup; loadBotConfigs surfaces * parse errors with better context right after. */ export declare function migrateSandboxConfigOnDisk(path: string): Promise<{ migrated: string[]; }>; /** Startup convenience: resolve the config path and migrate if present. */ export declare function migrateSandboxConfigAtStartup(): Promise; //# sourceMappingURL=sandbox-migration.d.ts.map