import type { IEditor } from 'roosterjs-content-model-types'; /** * Set text alignment of selected paragraphs * @param editor The editor to set alignment * @param alignment Alignment value: left, center or right */ export declare function setAlignment(editor: IEditor, alignment: 'left' | 'center' | 'right' | 'justify'): void;