export declare type WebhintMessage = { type: string; payload: any; }; export declare type Message = { webhint: WebhintMessage; }; export declare type ServerConfiguration = string | object; export interface IServer { start(): Promise; stop(): Promise; getPort(): Promise | number; configure(configuration: ServerConfiguration): Promise | void; port: number; } //# sourceMappingURL=types.d.ts.map