import type { JoinQuery } from 'payload'; import type { ClickHouseAdapter } from '../types.js'; export type ResolveJoinsArgs = { adapter: ClickHouseAdapter; collectionSlug: string; docs: Record[]; joins?: JoinQuery; locale?: string; versions?: boolean; }; /** * Resolves join relationships for a collection of documents. * Queries the relationships table to find documents that reference * the parent documents, then attaches them with pagination metadata. */ export declare function resolveJoins({ adapter, collectionSlug, docs, joins, locale, versions, }: ResolveJoinsArgs): Promise; //# sourceMappingURL=resolveJoins.d.ts.map