import { ModuleConfigModel } from '../../config/models/config.model'; export declare class BuddyConfigModel extends ModuleConfigModel { type: string; name: string; personalityPath: string; provider: string; voiceEnabled: boolean; sttPlugin: string; ttsPlugin: string; heartbeatIntervalMs: number; maxToolIterations: number; anomalyTemperatureDriftThreshold: number; anomalyStuckSensorHours: number; anomalyUnusualActivityThreshold: number; anomalyUnusualActivityWindowMinutes: number; energyExcessSolarThresholdKw: number; energyHighConsumptionThresholdKw: number; energyBatteryLowThresholdPercent: number; conflictLightsUnoccupiedMinutes: number; sttTimeoutMs: number; ttsTimeoutMs: number; llmTimeoutMs: number; contextWindowTokens: number; trackerMaxStaleCycles: number; trackerMaxSize: number; }