import { IStrategyState } from './strategy-state.i';
export interface IRuleValidResult {
    valid: true;
    cachedStrategyState: IStrategyState;
}
