export declare class MatcherUtils {
    static checkProp(currentBody: any, propertyName: string): any;
    static checkPropDoesntExist(currentBody: any, propertyName: string): any;
    static expectProp(currentBody: any, propertyName: string, expected: any, useExplicitEquality?: boolean): any;
}
