/**----------------------------------------------------------------------------------------- * Copyright © 2026 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the project root for more information *-------------------------------------------------------------------------------------------*/ import { AfterViewInit, ChangeDetectorRef, ElementRef, EventEmitter, NgZone, OnDestroy, OnInit, Renderer2 } from '@angular/core'; import * as i0 from "@angular/core"; /** * @hidden */ export declare class ScrollAnchorDirective implements AfterViewInit, OnInit, OnDestroy { private element; private zone; private renderer; private cdr; autoScroll: boolean; autoScrollChange: EventEmitter; overflowAnchor: string; showScrollToBottomButton: boolean; showMessageBoxSeparator: boolean; private scrolling; private unsubscribe; private scrollUpdate; constructor(element: ElementRef, zone: NgZone, renderer: Renderer2, cdr: ChangeDetectorRef); ngOnInit(): void; ngAfterViewInit(): void; ngOnDestroy(): void; onScroll(): void; autoScrollToBottom(): void; scrollToBottom(): void; calculateMessageBoxSeparator(): void; private setupScrollUpdate; private performScroll; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵdir: i0.ɵɵDirectiveDeclaration; }