Given a string index signature, what is `keyof Dict`?interface Dict { [key: string]: boolean; } type K = keyof Dict;