/** * @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 GroupingIndicatorProps { key?: any; title: string; dir: string; onRemove?: (event: any) => void; onSortChange?: (event: any, dir: string) => void; onDrag?: (draggableEvent: any, element: HTMLDivElement) => void; onPress?: (draggableEvent: any, element: HTMLDivElement) => void; onRelease?: (draggableEvent: any) => void; } /** * @hidden */ declare const GroupingIndicator: import('vue').DefineComponent; dir: PropType; onRemove: PropType<(event: any) => void>; onSortChange: PropType<(event: any, dir: string) => void>; onPress: PropType<(draggableEvent: any, element: HTMLDivElement) => void>; onDrag: PropType<(draggableEvent: any, element: HTMLDivElement) => void>; onRelease: PropType<(draggableEvent: any) => void>; }>, { indicatorContainerRef: import('vue').Ref; }, {}, {}, { press(event: any): void; drag(event: any): void; release(event: any): void; sortChange(event: any): void; handleKeyDown(event: any): void; groupRemove(event: any): void; }, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly; dir: PropType; onRemove: PropType<(event: any) => void>; onSortChange: PropType<(event: any, dir: string) => void>; onPress: PropType<(draggableEvent: any, element: HTMLDivElement) => void>; onDrag: PropType<(draggableEvent: any, element: HTMLDivElement) => void>; onRelease: PropType<(draggableEvent: any) => void>; }>> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>; export { GroupingIndicator };