/**-----------------------------------------------------------------------------------------
* Copyright © 2026 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the project root for more information
*-------------------------------------------------------------------------------------------*/
import { ChangeDetectorRef } from '@angular/core';
import { PagerContextService, PagerContextChanges } from "./pager-context.service";
import { PagerElementComponent } from './pager-element.component';
import { LocalizationService } from '@progress/kendo-angular-l10n';
import { PagerSize } from './common/pager-size';
import * as i0 from "@angular/core";
/**
* Represents the Kendo UI Pager Next Buttons component for Angular. Displays buttons for navigating to the next and to the last page ([see example](https://www.telerik.com/kendo-angular-ui/components/pager/settings-and-types)).
*
* @example
* ```html
*
*
*
*
*
* ```
*/
export declare class PagerNextButtonsComponent extends PagerElementComponent {
/**
* @hidden
*
* @readonly
* @type {boolean}
* @memberOf PagerNextButtonsComponent
*/
get disabled(): boolean;
/**
* Specifies the padding of the navigation buttons. The default value is set by the Kendo theme.
*/
size: PagerSize;
constructor(localization: LocalizationService, pagerContext: PagerContextService, cd: ChangeDetectorRef);
/**
* @hidden
*/
onClick(isLast?: boolean): boolean;
protected onChanges({ total, skip, pageSize }: PagerContextChanges): void;
static ɵfac: i0.ɵɵFactoryDeclaration;
static ɵcmp: i0.ɵɵComponentDeclaration;
}