/** * @license *------------------------------------------------------------------------------------------- * Copyright © 2026 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the package root for more information *------------------------------------------------------------------------------------------- */ import * as React from 'react'; /** * @hidden */ export interface GroupingIndicatorProps { index: number; title: string; dir: 'asc' | 'desc'; onRemove?: (event: React.MouseEvent | React.KeyboardEvent) => void; onSortChange?: (event: React.MouseEvent, dir: string) => void; onContextMenu?: (event: React.MouseEvent, dataItem: any) => void; onDrag?: (draggableEvent: any, element: HTMLDivElement) => void; onPress?: (draggableEvent: any, element: HTMLDivElement) => void; onRelease?: (draggableEvent: any) => void; } /** * @hidden */ export declare const GroupingIndicator: (props: GroupingIndicatorProps) => React.JSX.Element;