import type * as Merge from "../../../../api/index"; import * as core from "../../../../core"; import type * as serializers from "../../../index"; import { Contact } from "./Contact"; import { DebugModeLog } from "./DebugModeLog"; import { ErrorValidationProblem } from "./ErrorValidationProblem"; import { WarningValidationProblem } from "./WarningValidationProblem"; export declare const TicketingContactResponse: core.serialization.ObjectSchema; export declare namespace TicketingContactResponse { interface Raw { model: Contact.Raw; warnings: WarningValidationProblem.Raw[]; errors: ErrorValidationProblem.Raw[]; logs?: DebugModeLog.Raw[] | null; } }