/** * @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 orientation direction of the InputSeparator. * * The possible values are: * * `vertical` (Default) — InputSeparator is displayed vertically. * * `horizontal` — InputSeparator is displayed horizontally. */ export type InputSeparatorOrientation = 'horizontal' | 'vertical';