export interface ISortModel {
    colId: string;
    sort: string;
}
export declare function gridSortFormatter(initialSortModel: ISortModel[], gridSortModel: ISortModel[]): string;
