import type * as Merge from "../../../../api/index"; import * as core from "../../../../core"; import type * as serializers from "../../../index"; import { CommentContact } from "./CommentContact"; import { CommentTicket } from "./CommentTicket"; import { CommentUser } from "./CommentUser"; import { RemoteData } from "./RemoteData"; export declare const Comment: core.serialization.ObjectSchema; export declare namespace Comment { interface Raw { id?: string | null; remote_id?: string | null; created_at?: string | null; modified_at?: string | null; user?: CommentUser.Raw | null; contact?: CommentContact.Raw | null; body?: string | null; html_body?: string | null; ticket?: CommentTicket.Raw | null; is_private?: boolean | null; remote_created_at?: string | null; remote_was_deleted?: boolean | null; field_mappings?: Record | null; remote_data?: RemoteData.Raw[] | null; } }