import { type IconDefinition } from '@deephaven/icons'; interface TextAlignmentOptions { title: string; alignment: CanvasTextAlign | null; group: number; icon?: IconDefinition; } declare class TextAlignmentFormatContextMenu { static defaultGroup: number; static alignmentGroup: number; static readonly alignmentOptions: ReadonlyArray; /** * Gets the associated icon for a given alignment * @param alignment The text alignment * @returns The corresponding icon definition */ static getIconForAlignment(alignment: CanvasTextAlign): IconDefinition; } export default TextAlignmentFormatContextMenu; export type { TextAlignmentOptions }; //# sourceMappingURL=TextAlignmentFormatContextMenu.d.ts.map