import { BaseCommand } from './base-command'; import { EditorHost } from '../core'; export declare class AlignElementsCommand extends BaseCommand { private alignment; private elementIds; name: string; private previousPositions; constructor(host: EditorHost, alignment: 'left' | 'right' | 'top' | 'bottom' | 'centerX' | 'centerY', elementIds: string[]); execute(): void; undo(): void; private alignElements; private restorePreviousPositions; }