import { RuleBuilder, RuleFactory } from '../../types';
import { AssertMatchRule, AssertCountRule, AssertPropertyRule, AssertCommandOutputRule } from '../../assertions';
export declare class AssertMatchBuilder implements RuleBuilder {
    build(config: any, _factory: RuleFactory): AssertMatchRule;
}
export declare class AssertCountBuilder implements RuleBuilder {
    build(config: any, _factory: RuleFactory): AssertCountRule;
}
export declare class AssertPropertyBuilder implements RuleBuilder {
    build(config: any, _factory: RuleFactory): AssertPropertyRule;
}
export declare class AssertCommandOutputBuilder implements RuleBuilder {
    build(config: any, _factory: RuleFactory): AssertCommandOutputRule;
}
//# sourceMappingURL=AssertionBuilders.d.ts.map