export declare const ENERGY_MODULE_PREFIX = "energy"; export declare const ENERGY_MODULE_NAME = "energy-module"; export declare const ENERGY_MODULE_API_TAG_NAME = "Energy module"; export declare const ENERGY_MODULE_API_TAG_DESCRIPTION = "Provides endpoints for retrieving energy consumption and production data, including per-interval deltas computed from cumulative kWh meter readings."; export declare const DELTA_INTERVAL_MINUTES = 5; export declare const DEFAULT_RETENTION_DAYS = 90; export declare const MAX_RETENTION_DAYS = 3650; export declare const CLEANUP_BATCH_SIZE = 1000; export declare const DEFAULT_CACHE_TTL_SECONDS = 30; export declare const MAX_CACHE_ENTRIES = 256; export declare const VALID_ENERGY_RANGES: readonly ["today", "yesterday", "week", "month"]; export declare enum EnergySourceType { CONSUMPTION_IMPORT = "consumption_import", GENERATION_PRODUCTION = "generation_production", GRID_IMPORT = "grid_import", GRID_EXPORT = "grid_export" }