I want to use file index.d.ts
content is :
declare const Icons= {
"linkedin": "test",
"twitter": "test2"
};
export default Icons;
export type Keys = keyof typeof Icons;
And I face this error
A 'const' initializer in an ambient context must be a string or numeric literal or literal enum reference
How can I fix this issue?