In normal *.d.ts file (definition files for typescript), we can normally use
declare ***
export interface ***
but there is also this
/// <reference types="react-scripts" />
generated by create-react-app, what does it mean and can we actually use xml like syntax in *.d.ts files and what other syntax can we use?