/**-----------------------------------------------------------------------------------------
* 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 a template for prefix adornments in the TextBox component ([see examples](https://www.telerik.com/kendo-angular-ui/components/inputs/textbox/adornments#prefix-adornments)).
*
* @example
* ```html
*
*
*
*
*
* ```
*/
export declare class TextBoxPrefixTemplateDirective {
templateRef: TemplateRef;
/**
* Determines whether a separator is shown after the prefix template.
*
* @default false
*/
set showSeparator(value: boolean);
get showSeparator(): boolean;
private _showSeparator;
constructor(templateRef: TemplateRef);
static ɵfac: i0.ɵɵFactoryDeclaration;
static ɵdir: i0.ɵɵDirectiveDeclaration;
}