import { Matcher } from "./Matcher";
export declare class EndsWithMatcher extends Matcher {
    private expectedValue;
    constructor(expectedValue: any);
    match(value: Object): boolean;
    toString(): string;
}
