/**-----------------------------------------------------------------------------------------
* Copyright © 2026 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the project root for more information
*-------------------------------------------------------------------------------------------*/
/**
 * Sets the text alignment.
 *
 * You can use these values:
 * * `left`&mdash;text-align: left
 * * `right`&mdash;text-align: right
 * * `center`&mdash;text-align: center
 * * `justify`&mdash;text-align: justify
 */
export type TypographyTextAlign = 'left' | 'right' | 'center' | 'justify';
/**
 * @hidden
 */
export declare const typographyTextAlignOptions: {
    left: string;
    right: string;
    center: string;
    justify: string;
};
