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