/**----------------------------------------------------------------------------------------- * Copyright © 2026 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the project root for more information *-------------------------------------------------------------------------------------------*/ import { TemplateRef } from '@angular/core'; import * as i0 from "@angular/core"; /** * Represents the directive for suffix adornments in the Inputs and DropDowns components. * * Use the `kendoSuffixTemplate` directive to add custom content to the suffix container. * * * See [Inputs Suffix Adornments](https://www.telerik.com/kendo-angular-ui/components/inputs/textbox/adornments#suffix-adornments) * * See [DropDowns Suffix Adornments](https://www.telerik.com/kendo-angular-ui/components/dropdowns/multiselect/adornments#suffix-adornments) * * @example * ```html * * * * * * * * * * * ``` */ export declare class SuffixTemplateDirective { templateRef: TemplateRef; /** * Sets the `showSeparator` attribute of the `suffixTemplate`. * * @default false */ set showSeparator(value: boolean); get showSeparator(): boolean; private _showSeparator; constructor(templateRef: TemplateRef); static ɵfac: i0.ɵɵFactoryDeclaration; static ɵdir: i0.ɵɵDirectiveDeclaration; }