import type { SortItem } from "../+types.js";
import type { Column, SortModelItem } from "../../+types";
export declare function sortItemsToSortModel(sortItems: SortItem[], lookup: Map<string, Column<any>>): SortModelItem<any>[];
