import { MatcherChainFinisher } from "../types";
import { Matcher } from "./matcher";
export declare class ModifyWithMatcher extends Matcher {
    /**
     * Expect the bounded property to be modified with the provided value.
     *
     * [input]="property"\
     * (output)="property = $event"\
     * (output)="property = value"
     *
     * @param value - The value to modify the bounded property with.
     */
    modifyWith(value: unknown): MatcherChainFinisher<this>;
}
