export declare class SlackMessengerService {
    private readonly _client;
    constructor(slackToken: string);
    protected errorMessage(topic: string, error: any, channel: string): Promise<import("@slack/web-api").ChatPostMessageResponse>;
    protected sendMessage(title: string, s: string, channel: string): Promise<import("@slack/web-api").ChatPostMessageResponse>;
}
