import * as graphql from "graphql"; import { Connection } from "jsforce"; import { Maybe, Table } from "./helpers"; import { Definition } from "./define"; export declare type ASTNode = Maybe; export declare type Arguments = Table; export declare type Parameters = Table>; export interface Resolver { (obj: null, args: Arguments, context: Connection, info: graphql.GraphQLResolveInfo): Promise; } export declare function resolve(_schema: Definition<"Schema">, params: Parameters, type: Definition<"Type">): Resolver;