/**
 * @license
 *-------------------------------------------------------------------------------------------
 * Copyright © 2026 Progress Software Corporation. All rights reserved.
 * Licensed under commercial license. See LICENSE.md in the package root for more information
 *-------------------------------------------------------------------------------------------
 */
import { ColumnSortSettings, SortSettings } from '@progress/kendo-react-data-tools';
/**
 * The settings for sorting the Grid columns.
 */
export interface GridColumnSortSettings extends ColumnSortSettings {
}
/**
 * The sorting settings of the Grid ([see example](https://www.telerik.com/kendo-react-ui/components/grid/sorting)).
 *
 * @example
 * ```jsx-no-run
 *
 * <Grid
 *    sortable={true}
 * >
 * </Grid>
 * ```
 */
export type GridSortSettings = SortSettings;
