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