/** * @access private */ export declare abstract class MatcherRule { private readonly transformation; constructor(transformation: (v: Input_Type) => Output_Type); abstract matches(value: Input_Type): boolean; execute(value: Input_Type): Output_Type; } //# sourceMappingURL=MatcherRule.d.ts.map