/**----------------------------------------------------------------------------------------- * Copyright © 2026 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the project root for more information *-------------------------------------------------------------------------------------------*/ import { ElementRef, OnDestroy, OnInit, Renderer2 } from '@angular/core'; import { PagerNavigationService } from './navigation.service'; import * as i0 from "@angular/core"; /** * Represents the Kendo UI Pager focusable directive for Angular. Apply this directive to custom focusable elements in the [`kendoPagerTemplate`](https://www.telerik.com/kendo-angular-ui/components/pager/api/pagertemplatedirective) to include them in the built-in Pager keyboard navigation. * * @example * ```html * * * * * * ``` */ export declare class PagerFocusableDirective implements OnInit, OnDestroy { private navigationService; private element; private renderer; private subscriptions; constructor(navigationService: PagerNavigationService, element: ElementRef, renderer: Renderer2); ngOnInit(): void; ngOnDestroy(): void; private get nativeElement(); private innerNavigationChange; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵdir: i0.ɵɵDirectiveDeclaration; }