import { GraphQLResolveInfo } from "graphql"; import { Node } from "../../classes"; export default function findResolver({ node }: { node: Node; }): { type: string; resolve: (_root: any, _args: any, _context: unknown, info: GraphQLResolveInfo) => Promise; args: { fulltext?: string; where: string; options: string; }; }; //# sourceMappingURL=read.d.ts.map