import type { SQL } from 'drizzle-orm'; import type { Field, Where } from 'mzinga/types'; import type { GenericColumn, PostgresAdapter } from '../types'; import type { BuildQueryJoinAliases, BuildQueryJoins } from './buildQuery'; type Args = { adapter: PostgresAdapter; fields: Field[]; joinAliases: BuildQueryJoinAliases; joins: BuildQueryJoins; locale: string; selectFields: Record; tableName: string; where: Where; }; export declare function parseParams({ adapter, fields, joinAliases, joins, locale, selectFields, tableName, where, }: Args): Promise; export {}; //# sourceMappingURL=parseParams.d.ts.map