ValueOp: {
    typeUrl: string;
    decode(input: Uint8Array | BinaryReader, length?: number): ValueOp;
    encode(message: ValueOp, writer?: BinaryWriter): BinaryWriter;
    fromAmino(object: ValueOpAmino): ValueOp;
    fromAminoMsg(object: ValueOpAminoMsg): ValueOp;
    fromPartial(object: {
        key?: Uint8Array;
        proof?: {
            aunts?: Uint8Array[];
            index?: bigint;
            leafHash?: Uint8Array;
            total?: bigint;
        };
    }): ValueOp;
    fromProtoMsg(message: ValueOpProtoMsg): ValueOp;
    toAmino(message: ValueOp): ValueOpAmino;
    toProto(message: ValueOp): Uint8Array;
    toProtoMsg(message: ValueOp): ValueOpProtoMsg;
}