export class GridCellActionDebugBreak extends GridCellAction {
    static from({ condition }: {
        condition?: typeof returnTrue;
    }): GridCellActionDebugBreak;
    /**
     *
     * @type {function():boolean}
     */
    condition: () => boolean;
    execute(data: any, x: any, y: any, rotation: any): void;
}
import { GridCellAction } from "../../../placement/action/GridCellAction.js";
import { returnTrue } from "../../../../core/function/returnTrue.js";
//# sourceMappingURL=GridCellActionDebugBreak.d.ts.map