I have a json file ```json { "1a": { "mainHint": "hello", "commentHint": "yay" }, "2a": { "mainHint": "hello2", "commentHint": "yay2" }, "3a": { "mainHint": "hello3", "commentHint": "yay3" }, "4a": { "mainHint": "hello4", "commentHint": "yay4" } } ``` Now I want to access it in typescript as follows ```tsx "use client"; import levels from '../leveldat.json' const Level=({level, branch}: {level:string, branch:string})=>{ console.log(levels[`${level}${branch}`]) return <p>{}</p> } export default Level ``` But it shows Element implicitly has an 'any' type because expression of type 'string How can I fix this