import { DecodedUnsignedHexTx, OptionsWithMeta } from '../../types'; /** * This should be used in conjunction with `encodeUnsignedTransaction` as the expected * payload will match the `Extrinsic` type we are generating via polkadot-js. * * @param encodedUnsignedTx Generated by `encodeUnsignedTransaction` * @param options Runtime-specific data used for decoding the transaction. */ export declare function decodeUnsignedHexTx(encodedUnsignedTx: string, options: OptionsWithMeta): DecodedUnsignedHexTx;