/**----------------------------------------------------------------------------------------- * Copyright © 2026 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the project root for more information *-------------------------------------------------------------------------------------------*/ import { Observable } from 'rxjs'; import { NgControl } from '@angular/forms'; import { EventEmitter } from '@angular/core'; /** * @hidden */ export declare class FloatingLabelInputAdapter { private component; onFocus: Observable | EventEmitter; onBlur: Observable | EventEmitter; autoFillStart: Observable | EventEmitter; autoFillEnd: Observable | EventEmitter; onValueChange: Observable | EventEmitter; get focusableId(): string; set focusableId(value: string); constructor(component: any, formControl?: NgControl); }