RawTransaction: Codec<EncodableRecord<{
    version: Codec<NumLike, number>;
    cellDeps: Codec<CellDepLike[], CellDep[]>;
    headerDeps: Codec<BytesLike[], `0x${string}`[]>;
    inputs: Codec<CellInputLike[], CellInput[]>;
    outputs: Codec<CellOutputLike[], CellOutput[]>;
    outputsData: Codec<BytesLike[], `0x${string}`[]>;
}>, DecodedRecord<{
    version: Codec<NumLike, number>;
    cellDeps: Codec<CellDepLike[], CellDep[]>;
    headerDeps: Codec<BytesLike[], `0x${string}`[]>;
    inputs: Codec<CellInputLike[], CellInput[]>;
    outputs: Codec<CellOutputLike[], CellOutput[]>;
    outputsData: Codec<BytesLike[], `0x${string}`[]>;
}>> = ...