import type { CollectionConfig } from "payload/dist/exports/types"; import { FieldAndPath } from "../types"; declare const extractRelationships: (collectionConfig: CollectionConfig) => FieldAndPath[]; declare const generateWhereClause: (id: string | number, hasMany: boolean) => { contains: string | number; equals?: undefined; } | { equals: string | number; contains?: undefined; }; export { extractRelationships, generateWhereClause };