export class CellMatcherWithinAABB extends CellMatcher {
    /**
     *
     * @param {number} x0
     * @param {number} y0
     * @param {number} x1
     * @param {number} y1
     * @returns {CellMatcherWithinAABB}
     */
    static from(x0: number, y0: number, x1: number, y1: number): CellMatcherWithinAABB;
    area: AABB2;
    match(grid: any, x: any, y: any, rotation: any): any;
}
import { CellMatcher } from "../../../rules/CellMatcher.js";
import AABB2 from "../../../../core/geom/2d/aabb/AABB2.js";
//# sourceMappingURL=CellMatcherWithinAABB.d.ts.map