import { IGateway } from '../interfaces'; import { Content, SlackOptions } from '../types'; export declare class SlackGateway implements IGateway { private readonly slackOption; private readonly logger; constructor(slackOption: SlackOptions); send(to: string, content: Content): Promise; }