import type * as ElevenLabs from "../../api/index"; import * as core from "../../core"; import type * as serializers from "../index"; import { SeatType } from "./SeatType"; import { SubscriptionResponse } from "./SubscriptionResponse"; export declare const User: core.serialization.ObjectSchema; export declare namespace User { interface Raw { user_id: string; subscription: SubscriptionResponse.Raw; is_new_user: boolean; xi_api_key?: string | null; can_use_delayed_payment_methods: boolean; is_onboarding_completed: boolean; is_onboarding_checklist_completed: boolean; show_compliance_terms?: boolean | null; first_name?: string | null; is_api_key_hashed?: boolean | null; xi_api_key_preview?: string | null; referral_link_code?: string | null; partnerstack_partner_default_link?: string | null; created_at: number; seat_type: SeatType.Raw; } }