How to define data type for queryselector in typescript

I am trying to define the data type for query selector in typescript, But I do not know how to define it. I have defined any. But any is not a good way. So, How to define the data type for query selector.

test.ts:

public getMatch:any;

this.getMatch = document.querySelector("#exampleId");