interface Such {
	amaze(): void;
	much(): void;
}
declare module 'test-module' {
    export function wow(): Such;
}
