/** * @license *------------------------------------------------------------------------------------------- * Copyright © 2026 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the package root for more information *------------------------------------------------------------------------------------------- */ /** * Specifies the resize direction of the TextArea sections. * * The possible values are: * `vertical`(Default) —TextArea can be resized only vertically. * `horizontal`—TextArea can be resized only horizontally. * `both`—TextArea can be resized both vertically and horizontally. * `none`—TextArea can not be manually resized. */ export type TextAreaResize = 'both' | 'horizontal' | 'vertical' | 'none'; /** * Specifies the enum options for resize direction of the TextArea sections. */ export declare enum TextAreaResizeEnum { /** * `both`—TextArea can be resized both vertically and horizontally. */ both = "both", /** * `horizontal`—TextArea can be resized only horizontally. */ horizontal = "horizontal", /** * `vertical`(Default) —TextArea can be resized only vertically. */ vertical = "vertical", /** * `none`—TextArea can not be manually resized. */ none = "none" }