import { ElasticityStrategy } from '../../../model'; /** * Error to be thrown when there are problems during the execution of an elasticity strategy. */ export declare class ElasticityStrategyExecutionError extends Error { elasticityStrategy: ElasticityStrategy; cause?: Error; constructor(msg: string, elasticityStrategy: ElasticityStrategy, cause?: Error); }