import { GraphQLNonNull, GraphQLObjectType } from "graphql"; interface CurrencyStats { supply: string; max_supply: string; issuer: string; } interface GetCurrencyStatsArgs { code: string; symbol: 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_currency_stats: { description: string; type: GraphQLObjectType; args: { code: { type: GraphQLNonNull>; }; symbol: { type: GraphQLNonNull>; }; }; resolve(root: unknown, args: GetCurrencyStatsArgs, context: Context, info: unknown): Promise; }; export {};