ExistenceProof: {
    typeUrl: string;
    decode(input: Uint8Array | BinaryReader, length?: number): ExistenceProof;
    encode(message: ExistenceProof, writer?: BinaryWriter): BinaryWriter;
    fromAmino(object: ExistenceProofAmino): ExistenceProof;
    fromAminoMsg(object: ExistenceProofAminoMsg): ExistenceProof;
    fromPartial(object: {
        key?: Uint8Array;
        leaf?: {
            hash?: HashOp;
            length?: LengthOp;
            prefix?: Uint8Array;
            prehashKey?: HashOp;
            prehashValue?: HashOp;
        };
        path?: {
            hash?: HashOp;
            prefix?: Uint8Array;
            suffix?: Uint8Array;
        }[];
        value?: Uint8Array;
    }): ExistenceProof;
    fromProtoMsg(message: ExistenceProofProtoMsg): ExistenceProof;
    toAmino(message: ExistenceProof): ExistenceProofAmino;
    toProto(message: ExistenceProof): Uint8Array;
    toProtoMsg(message: ExistenceProof): ExistenceProofProtoMsg;
}