import { GraphQLFieldConfig } from "graphql"; interface GetSmartContractArgs { account_name: 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_smart_contract: GraphQLFieldConfig; export {};