import { SortNode } from "ts-rsql"; import type { SqlContext } from "../context"; export declare type SortResult = { isValid: true; orderby: string; seek: string; } | { isValid: false; err: string; }; export declare const toOrderBy: (input: SortNode[] | string | null, keyset: string | null, context: SqlContext) => SortResult; //# sourceMappingURL=to-orderby.d.ts.map