Proof: {
    typeUrl: string;
    decode(input: Uint8Array | BinaryReader, length?: number): Proof;
    encode(message: Proof, writer?: BinaryWriter): BinaryWriter;
    fromAmino(object: ProofAmino): Proof;
    fromAminoMsg(object: ProofAminoMsg): Proof;
    fromPartial(object: {
        aunts?: Uint8Array[];
        index?: bigint;
        leafHash?: Uint8Array;
        total?: bigint;
    }): Proof;
    fromProtoMsg(message: ProofProtoMsg): Proof;
    toAmino(message: Proof): ProofAmino;
    toProto(message: Proof): Uint8Array;
    toProtoMsg(message: Proof): ProofProtoMsg;
}