import type * as Merge from "../../../../api/index"; import * as core from "../../../../core"; import type * as serializers from "../../../index"; import { EngagementTypeActivityType } from "./EngagementTypeActivityType"; import { RemoteField } from "./RemoteField"; export declare const EngagementType: core.serialization.ObjectSchema; export declare namespace EngagementType { interface Raw { id?: string | null; remote_id?: string | null; created_at?: string | null; modified_at?: string | null; activity_type?: EngagementTypeActivityType.Raw | null; name?: string | null; remote_fields?: RemoteField.Raw[] | null; } }