import type { HotInstance } from '../../../core/types'; export declare const KEY = "alignment"; /** * @returns {object} */ export default function alignmentItem(): { key: string; name(this: HotInstance): string; disabled(this: HotInstance): boolean; submenu: { items: ({ key: string; name(this: HotInstance): string; callback(this: HotInstance): void; disabled: boolean; } | { name: string; key?: undefined; callback?: undefined; disabled?: undefined; })[]; }; };