import type { VariableConfigJSON } from './types'; import type { VariableSchemaMapper } from './variable-schema-mapper'; export declare class BotVariablesLoader { private readonly projectRoot; private readonly schemaMapper; constructor(projectRoot: string, schemaMapper: VariableSchemaMapper); load(): Promise; }