/** * @license *------------------------------------------------------------------------------------------- * Copyright © 2026 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the package root for more information *------------------------------------------------------------------------------------------- */ import { SVGIcon } from '@progress/kendo-svg-icons'; import { PropType } from 'vue'; export interface PagerNavigationButtonProps { /** * The title of the button. */ title: string; /** * The class responsible for the icon of the button. */ icon: string; /** * The svg icon responsible for the icon of the button. */ svgIcon: SVGIcon; /** * The page number returned when the button is clicked. */ page: number; /** * The disabled state of the button. */ disabled: boolean; /** * The size of the button. */ size: string; /** * The method that will be called when a page is changed. */ onPagechange: (page: number, event: any) => void; } /** * @hidden */ declare const PagerNavigationButton: import('vue').DefineComponent; disabled: PropType; icon: PropType; svgIcon: PropType; page: PropType; size: PropType; onPagechange: PropType<(page: number, event: any) => void>; }>, {}, {}, {}, { changePage(e: any): void; }, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly; disabled: PropType; icon: PropType; svgIcon: PropType; page: PropType; size: PropType; onPagechange: PropType<(page: number, event: any) => void>; }>> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>; export { PagerNavigationButton };