import type * as ElevenLabs from "../../api/index"; import * as core from "../../core"; import type * as serializers from "../index"; import { AuthConnectionDependencies } from "./AuthConnectionDependencies"; export declare const SlackBotAuthResponse: core.serialization.ObjectSchema; export declare namespace SlackBotAuthResponse { interface Raw { name: string; provider?: "Slack" | null; id: string; used_by?: AuthConnectionDependencies.Raw | null; } }