/**
 * Wrapper around multiple actions
 */
export class GridCellActionSequence extends GridCellAction {
    /**
     *
     * @param {GridCellAction[]} sequence
     * @returns {GridCellActionSequence}
     */
    static from(sequence: GridCellAction[]): GridCellActionSequence;
    /**
     *
     * @type {GridCellAction[]}
     */
    elements: GridCellAction[];
    initialize(data: any, seed: any): void;
    execute(data: any, x: any, y: any, rotation: any): void;
}
import { GridCellAction } from "../GridCellAction.js";
//# sourceMappingURL=GridCellActionSequence.d.ts.map