import { Action, ActionType } from "./Action";
export declare class LayerReorderAction extends Action {
    type: ActionType;
    layerId: string;
    previousLayerIds: Array<string>;
    reorderdLayerIds: Array<string>;
    constructor(previousLayerIds: Array<string>, reorderdLayerIds: Array<string>);
    createInverseAction(): Action;
}
