export type IGreeter = { greet(name: string): string; new(name: string): IGreeter; }