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