/** * @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 ToolbarScrollableProps { scrollButtons: string; scrollButtonsPosition: string; isOverflowing: boolean; buttonScrollSpeed: number; dir?: string; isScrollStartPosition: boolean; isScrollEndPosition: boolean; prevButton?: any; nextButton?: any; toolbarItems?: object; } /** * @hidden */ declare const ToolbarScrollable: import('vue').DefineComponent; scrollButtonsPosition: PropType; isOverflowing: PropType; buttonScrollSpeed: PropType; dir: PropType; isScrollStartPosition: PropType; isScrollEndPosition: PropType; prevButton: PropType; nextButton: PropType; toolbarItems: PropType; }>, {}, { scrollContentRef: any; }, {}, { onContentScroll(ev: any): void; }, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, { contentscroll: (event: any) => true; }, string, import('vue').PublicProps, Readonly; scrollButtonsPosition: PropType; isOverflowing: PropType; buttonScrollSpeed: PropType; dir: PropType; isScrollStartPosition: PropType; isScrollEndPosition: PropType; prevButton: PropType; nextButton: PropType; toolbarItems: PropType; }>> & Readonly<{ onContentscroll?: (event: any) => any; }>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>; export { ToolbarScrollable };