/**----------------------------------------------------------------------------------------- * Copyright © 2026 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 Kendo UI Pager template directive for Angular. * Use this directive to customize the Pager appearance. To define a Pager template, nest an `` tag with the `kendoPagerTemplate` directive inside ``. * * 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 * * * Page {{currentPage}} of {{totalPages}} * Items per page: {{pageSize}} * * * ``` */ export declare class PagerTemplateDirective { templateRef: TemplateRef; constructor(templateRef: TemplateRef); static ɵfac: i0.ɵɵFactoryDeclaration; static ɵdir: i0.ɵɵDirectiveDeclaration; }