/**
 * @license
 *-------------------------------------------------------------------------------------------
 * Copyright © 2026 Progress Software Corporation. All rights reserved.
 * Licensed under commercial license. See LICENSE.md in the package root for more information
 *-------------------------------------------------------------------------------------------
 */
/**
 * Represents the settings for the row reordering functionality of the Grid.
 */
export type GridRowReorderSettings = {
    /**
     * Determines if the row reordering functionality is enabled.
     *
     * @default false
     */
    enabled?: boolean;
    /**
     * Determines what the text of the drag clue will be.
     * Can also be a function giving the dataItem as an argument and returning a new custom drag clue as a ReactNode.
     *
     * Default value will be the text of the first visible data column of the row.
     */
    dragClue?: string | ((dataItem: any) => React.ReactNode);
};
