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