export class GridCellActionWriteFilterToLayer extends GridCellAction {
    /**
     *
     * @param {string} layer
     * @param {CellFilter} filter
     */
    static from(layer: string, filter: CellFilter): GridCellActionWriteFilterToLayer;
    /**
     *
     * @type {CellFilter}
     */
    filter: CellFilter;
    /**
     *
     * @type {string}
     */
    layerId: string;
    /**
     *
     * @type {GridDataLayer}
     * @private
     */
    private __layer;
    initialize(data: any, seed: any): void;
    execute(data: any, x: any, y: any, rotation: any): void;
}
import { GridCellAction } from "./GridCellAction.js";
//# sourceMappingURL=GridCellActionWriteFilterToLayer.d.ts.map