import type * as ElevenLabs from "../../api/index"; import * as core from "../../core"; import type * as serializers from "../index"; import { AgentConversationTicketIssueType } from "./AgentConversationTicketIssueType"; import { AgentConversationTicketSource } from "./AgentConversationTicketSource"; import { AgentConversationTicketStatus } from "./AgentConversationTicketStatus"; import { TicketCommentResponseModel } from "./TicketCommentResponseModel"; import { TurnCommentResponseModel } from "./TurnCommentResponseModel"; export declare const AgentConversationTicketResponseModel: core.serialization.ObjectSchema; export declare namespace AgentConversationTicketResponseModel { interface Raw { agentqa_ticket_id: string; workspace_id: string; owner_user_id: string; agent_id: string; needs_clustering: boolean; issue_type?: AgentConversationTicketIssueType.Raw | null; labels: string[]; conversation_ids: string[]; first_seen_unix_secs?: number | null; last_seen_unix_secs?: number | null; qa_comment?: string | null; ticket_comments: TicketCommentResponseModel.Raw[]; turn_comments: TurnCommentResponseModel.Raw[]; status: AgentConversationTicketStatus.Raw; source: AgentConversationTicketSource.Raw; assignee_user_id?: string | null; created_at_unix_secs: number; updated_at_unix_secs: number; } }