export class DescribeAs extends BaseMatcher {
    /**
     *
     * @param {string} template
     * @param {Matcher} matcher
     * @param {Array} values
     */
    constructor(template: string, matcher: Matcher, values: any[]);
    /**
     * @type {string}
     */
    template: string;
    /**
     * @type {Matcher}
     */
    matcher: Matcher;
    /**
     * @type {Array}
     */
    values: any[];
    matches(item: any, mismatch_description: any): any;
    describeTo(description: any): void;
}
import { BaseMatcher } from "../BaseMatcher.js";
//# sourceMappingURL=DescribeAs.d.ts.map