import { PropertySpy } from "../spying";
import { Matcher } from "./matcher";
export declare class PropertyMatcher<PropertyType> extends Matcher<PropertySpy<PropertyType>> {
    toHaveBeenSet(): void;
    toHaveBeenSetTo(value: PropertyType): void;
}
