import type { Collection, Field, PayloadRequest, RichTextField, SelectType } from 'payload'; import type { AdapterArguments } from '../types.js'; type Arguments = { currentDepth?: number; data: unknown; depth: number; draft: boolean; field: RichTextField; key: number | string; overrideAccess?: boolean; req: PayloadRequest; select?: SelectType; showHiddenFields: boolean; }; export declare const populate: ({ id, collection, currentDepth, data, depth, draft, key, overrideAccess, req, select, showHiddenFields, }: { collection: Collection; field: Field; id: string; } & Omit) => Promise; export {}; //# sourceMappingURL=populate.d.ts.map