export class CellMatcherAnd extends CellMatcherBinary {
    /**
     *
     * @param {CellMatcher} left
     * @param {CellMatcher} right
     * @returns {CellMatcherAnd}
     */
    static from(left: CellMatcher, right: CellMatcher): CellMatcherAnd;
    match(grid: any, x: any, y: any, rotation: any): boolean;
}
import { CellMatcherBinary } from "./CellMatcherBinary.js";
//# sourceMappingURL=CellMatcherAnd.d.ts.map