export interface PluginConnectorMessage { /** The channel as that connector spells it — a Slack channel id, a chat id. */ channel: string; text: string; /** Reply into a thread rather than to the channel, where the connector has * threads at all. */ thread?: string; } export interface PluginHostConnectors { /** Send through a configured connector, named as `config.yaml` names it. */ send(connector: string, message: PluginConnectorMessage): Promise; } export declare function connectorVerbs(pluginId: string): PluginHostConnectors; //# sourceMappingURL=connectors.d.ts.map