export class CellMatcherFromFilter extends CellMatcher {
    /**
     *
     * @param {CellFilter} f
     * @returns {CellMatcherFromFilter}
     */
    static from(f: CellFilter): CellMatcherFromFilter;
    /**
     *
     * @type {CellFilter|null}
     */
    filter: CellFilter | null;
    initialize(grid: any, seed: any): void;
    match(grid: any, x: any, y: any, rotation: any): boolean;
}
import { CellMatcher } from "./CellMatcher.js";
//# sourceMappingURL=CellMatcherFromFilter.d.ts.map