/**
 * @license
 *-------------------------------------------------------------------------------------------
 * Copyright © 2026 Progress Software Corporation. All rights reserved.
 * Licensed under commercial license. See LICENSE.md in the package root for more information
 *-------------------------------------------------------------------------------------------
 */
/**
 * The settings for sorting the Grid columns.
 */
export type GridColumnSortSettings = boolean | {
    /**
     * Enables the removal of the column sorting functionality.
     */
    allowUnsort?: boolean;
};
/**
 * The settings for sorting the Grid data.
 */
export type GridSortSettings = boolean | GridColumnSortSettings & {
    /**
     * The sort mode of the Grid.
     *
     * The available modes are:
     * - `single`
     * - `multiple`
     */
    mode?: 'single' | 'multiple';
};
/**
 * @hidden
 */
export declare const normalize: (...settings: (GridSortSettings | GridColumnSortSettings)[]) => any;
