/**----------------------------------------------------------------------------------------- * Copyright © 2024 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 the pager template which helps to customize the pager appearance in the TreeList. To define a pager * template, nest an `` tag with the `kendoTreeListPagerTemplate` directive inside ``. [See example](slug:paging_treelist#toc-pager-template). * * The template context provides the following fields: * * `currentPage`—The index of the displayed page. * * `pageSize`—The value of the current `pageSize`. * * `skip`—The current skip value. * * `total`—The total number of records. * * `totalPages`—The total number of available pages. * * @example * ```html * * * * * * * * * ``` */ export declare class PagerTemplateDirective { templateRef: TemplateRef; constructor(templateRef: TemplateRef); static ɵfac: i0.ɵɵFactoryDeclaration; static ɵdir: i0.ɵɵDirectiveDeclaration; }