export class GridPatternMatcherCell {
    /**
     *
     * @param {CellMatcher} rule
     * @param {number} x
     * @param {number} y
     * @returns {GridPatternMatcherCell}
     */
    static from(rule: CellMatcher, x: number, y: number): GridPatternMatcherCell;
    /**
     *
     * @type {CellMatcher}
     */
    rule: CellMatcher;
    /**
     *
     * @type {Vector2}
     */
    position: Vector2;
}
import Vector2 from "../../../core/geom/Vector2.js";
//# sourceMappingURL=GridPatternMatcherCell.d.ts.map