/** * @license *------------------------------------------------------------------------------------------- * Copyright © 2026 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the package root for more information *------------------------------------------------------------------------------------------- */ import { PropType } from 'vue'; /** * @hidden */ export interface ToolbarScrollButtonProps { buttonScrollSpeed?: number; disabled?: boolean; scrollContentRef?: any; type: 'prev' | 'next'; prevButton?: any; nextButton?: any; dir?: string; } /** * @hidden */ declare const ToolbarScrollButton: import('vue').DefineComponent; disabled: PropType; scrollContentRef: PropType; type: PropType<"next" | "prev">; prevButton: PropType; nextButton: PropType; dir: PropType; }>, {}, {}, {}, { getScrollButtonTitle(): string; }, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, { contentscroll: (type: string) => true; }, string, import('vue').PublicProps, Readonly; disabled: PropType; scrollContentRef: PropType; type: PropType<"next" | "prev">; prevButton: PropType; nextButton: PropType; dir: PropType; }>> & Readonly<{ onContentscroll?: (type: string) => any; }>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>; export { ToolbarScrollButton };