/** * Toggle the streaming-card switch for a chat. `off=true` suppresses cards * (emoji-reaction mode); `off=false` restores them. `changed` reports whether * the set actually moved (idempotent re-toggles return false). */ export declare function setCardMode(larkAppId: string, chatId: string, off: boolean): Promise<{ ok: true; changed: boolean; } | { ok: false; reason: string; }>; //# sourceMappingURL=card-mode-store.d.ts.map