import type { HorizontalAlign, ICommand } from '@univerjs/core'; export interface IShapeDocAlignCommandParams { value: HorizontalAlign; } /** * Wrapper command for shape text horizontal alignment. * This command receives the value from the menu selector and forwards it * to the Doc's AlignOperationCommand with the correct parameter format. */ export declare const ShapeDocAlignCommand: ICommand;