export interface ModelCacheState { modelContextLimitsCache: Map; anthropicContext1MEnabled: boolean; } export declare function createModelCacheState(): ModelCacheState; export declare function getModelLimit(state: ModelCacheState, providerID: string, modelID: string): number | undefined;