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