import type * as ElevenLabs from "../../api/index"; import * as core from "../../core"; import type * as serializers from "../index"; import { SeatType } from "./SeatType"; export declare const WorkspaceMemberResponseModel: core.serialization.ObjectSchema; export declare namespace WorkspaceMemberResponseModel { interface Raw { user_id: string; email: string; first_name?: string | null; seat_type?: SeatType.Raw | null; is_owner: boolean; is_locked: boolean; } }