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