/**-----------------------------------------------------------------------------------------
* Copyright © 2024 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the project root for more information
*-------------------------------------------------------------------------------------------*/
/**
 * Specifies the orientation of the TextArea adornments.
 *
 * The possible values are:
 * * `horizontal`(Default) &mdash;TextArea adornments are placed from left to right in `ltr`, and from right to left in `rtl` mode.
 * * `vertical`&mdash;TextArea adornments are placed from top to bottom.
 */
export declare type TextAreaAdornmentsOrientation = 'horizontal' | 'vertical';
