export class CellFilterLiteralFloat extends CellFilter {
    /**
     *
     * @param {number} value
     * @returns {CellFilterLiteralFloat}
     */
    static from(value: number): CellFilterLiteralFloat;
    /**
     *
     * @type {number}
     */
    value: number;
    execute(grid: any, x: any, y: any, rotation: any): number;
}
export namespace CellFilterLiteralFloat {
    let ONE: CellFilterLiteralFloat;
    let ZERO: CellFilterLiteralFloat;
}
import { CellFilter } from "../CellFilter.js";
//# sourceMappingURL=CellFilterLiteralFloat.d.ts.map