For example:
declare function foo(x : string, y : boolean) : string;
module Bar {
export function foo(x : string) { return ???.foo(x, true); }
}
How can I access the global foo from anywhere inside Bar (where a raw foo reference will implicitly reference Bar.foo)?