import { BaseType, MergeAttrs } from "./utils"; type Sortables = { [P in keyof T]: P; }[keyof T]; type Direction = 'asc' | 'ASC' | 'DESC' | 'desc'; export type Sort = Sortables> | Sortables>[] | { [K in Sortables>]?: Direction; } | { [K in Sortables>]?: Direction; }[]; export {};