import type { BotConfig } from "../../config/config.js"; import type { SkillEntry, SkillSnapshot } from "./types.js"; export declare function applySkillEnvOverrides(params: { skills: SkillEntry[]; config?: BotConfig; }): () => void; export declare function applySkillEnvOverridesFromSnapshot(params: { snapshot?: SkillSnapshot; config?: BotConfig; }): () => void;