/// <amd-module name="@cdkx/aws-sns-subscriptions/handlers/slack.service" />
import { WebClient } from '@slack/web-api';
export declare class SlackService {
    webClient: WebClient;
    constructor(token: string);
    getChannelIdByChannelName(name: string, types?: string, cursor?: string): Promise<{
        [key: string]: unknown;
        id: string;
        name: string;
    } | undefined>;
}
