import type { ASTNode, SortNode } from "ts-rsql"; import type { SqlContext } from "../context"; import type { SqlResult } from "../result"; export declare const buildPredicateAndOrderBy: (input: { filter: ASTNode | string | null; sort: SortNode[] | string | null; keyset: string | null; context: SqlContext; }) => SqlResult; //# sourceMappingURL=build-sql.d.ts.map