import type * as Merge from "../../../../api/index"; import * as core from "../../../../core"; import type * as serializers from "../../../index"; import { AccountOwner } from "./AccountOwner"; import { Address } from "./Address"; import { PhoneNumber } from "./PhoneNumber"; import { RemoteData } from "./RemoteData"; import { RemoteField } from "./RemoteField"; export declare const Account: core.serialization.ObjectSchema; export declare namespace Account { interface Raw { id?: string | null; remote_id?: string | null; created_at?: string | null; modified_at?: string | null; owner?: AccountOwner.Raw | null; name?: string | null; description?: string | null; industry?: string | null; website?: string | null; number_of_employees?: number | null; addresses?: Address.Raw[] | null; phone_numbers?: PhoneNumber.Raw[] | null; last_activity_at?: string | null; remote_updated_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; } }