Under `noUncheckedIndexedAccess`, what is the type of `v` from a dotted access on a string index signature?interface Dict { [key: string]: number; } declare const d: Dict; const v = d.someKey;