Livewire model binding while clicking other element

I have a very simple problem. Whenever I click on div I want the data binding to be applied to the file input.

<div>click me</div>
<input type="file" wire:model="photo"> <!-- while clicking on div, it should do the data binding to this file input  -->

I have been searching for it in the documentation but couldn’t find any clue. Is it possible to do that?