/**----------------------------------------------------------------------------------------- * 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 Previous Buttons component for Angular. Displays buttons for navigating to the first and to the previous page ([see example](https://www.telerik.com/kendo-angular-ui/components/pager/settings-and-types)). * * @example * ```html * * * * * * ``` */ export declare class PagerPrevButtonsComponent extends PagerElementComponent { constructor(localization: LocalizationService, pagerContext: PagerContextService, cd: ChangeDetectorRef); /** * Specifies the padding of the navigation buttons. The default value is set by the Kendo theme. */ size: PagerSize; /** * @hidden * * @readonly * @type {boolean} * @memberOf PagerPrevButtonsComponent */ get disabled(): boolean; /** * @hidden */ onClick(isFirst?: boolean): boolean; protected onChanges({ total, skip, pageSize }: PagerContextChanges): void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; }