export interface ModelCacheState { modelContextLimitsCache: Map; anthropicContext1MEnabled: boolean; } export interface RuntimeConfigState { config?: Record; version: number; } export declare function createModelCacheState(): ModelCacheState; export declare function createRuntimeConfigState(): RuntimeConfigState;