import type * as Merge from "../../../../api/index"; import * as core from "../../../../core"; import type * as serializers from "../../../index"; import { AttachmentAttachmentType } from "./AttachmentAttachmentType"; import { RemoteData } from "./RemoteData"; export declare const Attachment: core.serialization.ObjectSchema; export declare namespace Attachment { interface Raw { id?: string | null; remote_id?: string | null; created_at?: string | null; modified_at?: string | null; file_name?: string | null; file_url?: string | null; candidate?: string | null; attachment_type?: AttachmentAttachmentType.Raw | null; remote_was_deleted?: boolean | null; field_mappings?: Record | null; remote_data?: RemoteData.Raw[] | null; } }