/**
 * @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-spanning functionality of the Grid.
 */
export type GridRowSpannableSettings = {
    /**
     * Determines if the row-spanning functionality is enabled or disabled
     */
    enabled?: boolean;
    /**
     * A function that returns the value of the cell that should span the row.
     * The value could be combined from multiple fields of the dataItem to create a unique identifier and prevent the cell from being row-spanned.
     */
    valueGetter?: (dataItem: any, field: string) => any;
};
