// overloading on arity not allowed interface C { f(): string; f(): string; (): string; (): string; new (): string; new (): string; }