import type * as ElevenLabs from "../index"; /** * Response model for the internal Slack BYO bot auth connection. */ export interface SlackBotAuthResponse { name: string; provider?: "Slack"; id: string; usedBy?: ElevenLabs.AuthConnectionDependencies; status?: ElevenLabs.AuthConnectionStatus; statusDetail?: string; statusUpdatedAt?: string; }