import { Collection } from '../../collections/config/types'; import { RichTextField, Field } from '../config/types'; import { PayloadRequest } from '../../express/types'; declare type Arguments = { data: unknown; overrideAccess?: boolean; key: string | number; depth: number; currentDepth?: number; field: RichTextField; req: PayloadRequest; showHiddenFields: boolean; }; export declare const populate: ({ id, collection, data, key, overrideAccess, depth, currentDepth, req, showHiddenFields, }: Omit & { id: string; field: Field; collection: Collection; }) => Promise; export {};