For more complicated projects, or in cases where you intend to gradually type a dependency, it may be cleaner to create a module.
Using JQuery (although it does have typings available) as an example:
// place in jquery.d.ts
declare let $: any;
export default $;
And then in any file in your pr...