import type * as Merge from "../../../../api/index"; import * as core from "../../../../core"; import type * as serializers from "../../../index"; import { PatchedEngagementRequestDirection } from "./PatchedEngagementRequestDirection"; import { RemoteFieldRequest } from "./RemoteFieldRequest"; export declare const PatchedEngagementRequest: core.serialization.ObjectSchema; export declare namespace PatchedEngagementRequest { interface Raw { owner?: string | null; content?: string | null; subject?: string | null; direction?: PatchedEngagementRequestDirection.Raw | null; engagement_type?: string | null; start_time?: string | null; end_time?: string | null; account?: string | null; contacts?: (string | null | undefined)[] | null; integration_params?: Record | null; linked_account_params?: Record | null; remote_fields?: RemoteFieldRequest.Raw[] | null; } }