declare module "dashbot" { interface DashbotPlatforms { alexa: DashbotPlatform; } interface DashbotConfig {} class DashbotPlatform { public logOutgoing(rawEvent: any, reply: any): Promise; public logIncoming(rawEvent: any): Promise; } function dashbot(apiKey: string, config: DashbotConfig): DashbotPlatforms; export default dashbot; }