interface SlackOptions { channel?: string; } declare const slack: { send(message: string, options?: SlackOptions): Promise; }; type Slack = typeof slack; export { type Slack, slack };