import type { GraphQLResolveInfo } from "graphql"; type GraphQLFieldConfig = { description?: string; type: any; args?: { [key in keyof TArgs]: { type: any; }; }; resolve?: (source: TSource, args: TArgs, context: TContext, info: GraphQLResolveInfo) => any; }; export interface SerializedTransaction { chain_id: string; transaction_header: string; transaction_body: string; transaction: Record; } interface SendTransactionArgs { actions: any; configuration?: any; } export declare const send_transaction: (actionsType: any, ast_list: any) => GraphQLFieldConfig; export {};