export class CellMatcherContainsMarkerWithinRadius extends CellMatcher {
    /**
     *
     * @param {MarkerNodeMatcher} matcher
     * @param {number} radius
     * @returns {CellMatcherContainsMarkerWithinRadius}
     */
    static from(matcher: MarkerNodeMatcher, radius: number): CellMatcherContainsMarkerWithinRadius;
    /**
     * @type {MarkerNodeMatcher}
     */
    matcher: MarkerNodeMatcher;
    /**
     * Search radius
     * @type {number}
     */
    radius: number;
    match(grid: any, x: any, y: any, rotation: any): any;
}
import { CellMatcher } from "../CellMatcher.js";
//# sourceMappingURL=CellMatcherContainsMarkerWithinRadius.d.ts.map