/** * @ignore */ /** */ import { TypeRegistry } from '@polkadot/types'; import { Call } from '@polkadot/types/interfaces'; import { TxMethod } from '../../types/method'; /** * From a PolkadotJs `Call` type, get a serializable object representing the * call. All integers are serialized to base 10 strings in order to be safe. * * @param registry - The type registry * @param method - The method to serialize */ export declare function toTxMethod(registry: TypeRegistry, method: Call): TxMethod;