InnerOp: {
    typeUrl: string;
    decode(input: Uint8Array | BinaryReader, length?: number): InnerOp;
    encode(message: InnerOp, writer?: BinaryWriter): BinaryWriter;
    fromAmino(object: InnerOpAmino): InnerOp;
    fromAminoMsg(object: InnerOpAminoMsg): InnerOp;
    fromPartial(object: {
        hash?: HashOp;
        prefix?: Uint8Array;
        suffix?: Uint8Array;
    }): InnerOp;
    fromProtoMsg(message: InnerOpProtoMsg): InnerOp;
    toAmino(message: InnerOp): InnerOpAmino;
    toProto(message: InnerOp): Uint8Array;
    toProtoMsg(message: InnerOp): InnerOpProtoMsg;
}