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