import { BaseConnector, EventConfiguration } from 'reshuffle-base-connector';
import Reshuffle from '../Reshuffle';
export default class SlackConnector extends BaseConnector {
    on(options: any, eventId: EventConfiguration['id']): EventConfiguration;
    send(message: string): void;
    start(app: Reshuffle): void;
    removeEvent(event: EventConfiguration): void;
    stop(): void;
}
