import { GraphQLResolveInfo } from "graphql"; import { Node } from "../../classes"; export default function createResolver({ node }: { node: Node; }): { type: string; resolve: (_root: any, _args: any, _context: unknown, info: GraphQLResolveInfo) => Promise<{ info: { bookmark: string | null; }; }>; args: { input: string; }; }; //# sourceMappingURL=create.d.ts.map