/** * @ignore */ /** */ import { DecodedSignedTx, OptionsWithMeta } from '../../types'; /** * Parse the transaction information from a signed transaction offline. * * @param signedTx - The JSON representing the signed transaction. * @param options - Runtime-specific data used for decoding the transaction. */ export declare function decodeSignedTx(signedTx: string, options: OptionsWithMeta): DecodedSignedTx;