import { BaseCommand } from './base-command'; import { EditorHost } from '../core'; export declare class DistributeElementsCommand extends BaseCommand { private direction; private elementIds; name: string; private previousPositions; constructor(host: EditorHost, direction: 'horizontal' | 'vertical', elementIds: string[]); execute(): void; undo(): void; private distributeElements; private restorePreviousPositions; }