/** * v0.8 §3.6 — `solosquad messenger broadcast-handover --to `. * * Reassigns the broadcast-eligible bot to a new user handle. The CLI verifies * that the target handle exists in *some* org's user registry before stamping * workspace.yaml; otherwise the handover silently elects a non-existent bot. */ export interface BroadcastHandoverOptions { to: string; enable?: boolean; } export declare function broadcastHandoverCommand(opts: BroadcastHandoverOptions): Promise;