import type { ValuesOf } from '../../Types/ValuesOf'; /** * `TextAlignment` - The `TextAlignment` is used to describe how text is positioned within a parent's layout. * * @public */ export declare const TextAlignment: { /** * `center` - Align element to center. */ readonly Center: "center"; /** * `left` - Align element to left. */ readonly Left: "left"; /** * `right` - Align element to right. */ readonly Right: "right"; }; /** * @public */ export type TextAlignment = ValuesOf; //# sourceMappingURL=TextAlignment.d.ts.map