/** * `franklin slack` — start the Slack ingress bot. * * Designed to run on a server / always-on laptop. Reads the bot token, app * token, and the user allowlist from env (or ~/.blockrun/config). Uses * trust-mode permissions because the operator is remote — there's no terminal * prompt they can answer per tool call. The `SLACK_ALLOWED_USERS` allowlist in * `runSlackBot` is the real security boundary, mirroring Telegram's owner lock. */ interface SlackCommandOptions { model?: string; debug?: boolean; } export declare function slackCommand(opts: SlackCommandOptions): Promise; export {};