/** * v1.2.9 §D — `solosquad chat`: talk to Chief from the terminal, without * Discord/Slack. Constructs the same ChiefRunner the bot uses (claude / * sessions / events) but passes `source: "cli"` so Chief knows it's on the * terminal surface. Shares the messenger session-store keyed by * (orgSlug, userId) — the CLI uses a dedicated `cli-user` id by default so * its session doesn't collide with the messenger user's session. */ export interface ChatOpts { org?: string; user?: string; } export declare function chatCommand(message: string[] | undefined, opts: ChatOpts): Promise;