import { GraphQLList, GraphQLNonNull } from "graphql"; import { public_key_type } from "./antelope_types/public_key_type.js"; import { packed_transaction_type } from "./graphql_object_types/packed_transaction.js"; import { type Context } from "./types/Context.js"; interface SerializeTransactionArgs { actions: any; configuration?: any; available_keys?: string[]; } export declare const serialize_transaction: (actions: any, // type of actions GraphQL input ast_list: any) => { description: string; type: GraphQLNonNull; args: { actions: { type: any; }; configuration: { type: any; }; available_keys: { type: GraphQLList; }; }; resolve: (root: any, args: SerializeTransactionArgs, context: Context, info: any) => Promise; }; export {};