import type { SelectFieldPrimitives } from './selectTypes'; import type { WhereStatements } from './whereTypes'; declare const stringifyQuery: (args: { name: string; alias?: string; first?: number; skip?: number; orderBy?: string; orderDirection?: string; where?: WhereStatements; select?: SelectFieldPrimitives; id?: string; }) => string; export default stringifyQuery;