import type { GraphQLResolveInfo } from 'graphql'; import type { Collection, CollectionSlug, DataFromCollectionSlug } from 'payload'; import type { Context } from '../types.js'; export type Resolver = (_: unknown, args: { draft: boolean; fallbackLocale?: string; id: string; locale?: string; select?: boolean; trash?: boolean; }, context: Context, info: GraphQLResolveInfo) => Promise; export declare function findByIDResolver(collection: Collection): Resolver>; //# sourceMappingURL=findByID.d.ts.map