/**----------------------------------------------------------------------------------------- * Copyright © 2026 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the project root for more information *-------------------------------------------------------------------------------------------*/ import { SeparatorOrientation } from './separator-orientation'; import * as i0 from "@angular/core"; /** * Specifies a separator in the content of the [Inputs](https://www.telerik.com/kendo-angular-ui/components/inputs/textbox/adornments#separator) and [DropDowns](https://www.telerik.com/kendo-angular-ui/components/dropdowns/multiselect/adornments#separator). * @example * ```ts-no-run * _@Component({ * selector: 'my-app', * template: ` * * * * * * * * ` * }) * class AppComponent {} * ``` */ export declare class SeparatorComponent { /** * Specifies the orientation of the separator. Applicable for the adornments of the [`TextAreaComponent`](https://www.telerik.com/kendo-angular-ui/components/inputs/api/textareacomponent). * * @default 'vertical' */ orientation: SeparatorOrientation; /** * @hidden */ get vertical(): boolean; /** * @hidden */ get horizontal(): boolean; /** * @hidden */ hostClass: boolean; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; }