/**
 * Converts {@link CellMatcher} output to 0 or 1
 */
export class CellFilterCellMatcher extends CellFilter {
    /**
     *
     * @param {CellMatcher} matcher
     * @returns {CellFilterCellMatcher}
     */
    static from(matcher: CellMatcher): CellFilterCellMatcher;
    /**
     *
     * @type {CellMatcher}
     */
    matcher: CellMatcher;
    initialize(grid: any, seed: any): void;
    execute(grid: any, x: any, y: any, rotation: any): 0 | 1;
}
import { CellFilter } from "./CellFilter.js";
//# sourceMappingURL=CellFilterCellMatcher.d.ts.map