/**-----------------------------------------------------------------------------------------
* Copyright © 2026 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the project root for more information
*-------------------------------------------------------------------------------------------*/
import { AfterViewInit, ElementRef, EventEmitter, OnDestroy, Renderer2, NgZone } from '@angular/core';
import * as i0 from "@angular/core";
/**
* Represents the [Kendo UI TextBox directive](https://www.telerik.com/kendo-angular-ui/components/inputs/textbox) for the Inputs components for Angular.
* Use this directive to style the textbox of any `input` element.
*
* @example
* ```html
*
*
*
* ```
*/
export declare class TextBoxDirective implements AfterViewInit, OnDestroy {
private renderer;
private inputElement;
private ngZone;
hostClasses: boolean;
/**
* @hidden
*/
onFocus: EventEmitter;
/**
* @hidden
*/
onBlur: EventEmitter;
/**
* @hidden
*/
onValueChange: EventEmitter;
/**
* @hidden
*/
autoFillStart: EventEmitter;
/**
* @hidden
*/
autoFillEnd: EventEmitter;
/**
* @hidden
*/
set value(text: string);
/**
* @hidden
*/
get value(): string;
get id(): string;
set id(id: string);
private listeners;
constructor(renderer: Renderer2, inputElement: ElementRef, ngZone: NgZone);
ngAfterViewInit(): void;
ngOnDestroy(): void;
static ɵfac: i0.ɵɵFactoryDeclaration;
static ɵdir: i0.ɵɵDirectiveDeclaration;
}