import type * as Merge from "../../../../api/index"; import * as core from "../../../../core"; import type * as serializers from "../../../index"; import { Address } from "./Address"; import { ContactAccount } from "./ContactAccount"; import { ContactOwner } from "./ContactOwner"; import { EmailAddress } from "./EmailAddress"; import { PhoneNumber } from "./PhoneNumber"; import { RemoteData } from "./RemoteData"; import { RemoteField } from "./RemoteField"; export declare const Contact: core.serialization.ObjectSchema; export declare namespace Contact { interface Raw { id?: string | null; remote_id?: string | null; created_at?: string | null; modified_at?: string | null; first_name?: string | null; last_name?: string | null; account?: ContactAccount.Raw | null; owner?: ContactOwner.Raw | null; addresses?: Address.Raw[] | null; email_addresses?: EmailAddress.Raw[] | null; phone_numbers?: PhoneNumber.Raw[] | null; last_activity_at?: string | null; remote_created_at?: string | null; remote_was_deleted?: boolean | null; field_mappings?: Record | null; remote_data?: RemoteData.Raw[] | null; remote_fields?: RemoteField.Raw[] | null; } }