Что-то у меня не завелась конструкция
// global script:
// ==============
function globalFn(arg: string): void {
// actual implementation
}
// normal script:
// ==============
declare function globalFn(arg: string): void;
// use as normal:
globalFn("test");