import { GraphQLFieldConfig } from "graphql"; interface GetProducersArgs { limit?: string; lower_bound?: string; } export interface Context { network(root: any, args: any, info: any): { rpc_url: string | URL | Request; fetchOptions: RequestInit; }; signTransaction?: (transaction: any) => Promise; } export declare const get_producers: GraphQLFieldConfig; export {};