import type * as Merge from "../../../../api/index"; import * as core from "../../../../core"; import type * as serializers from "../../../index"; import { NoteAccount } from "./NoteAccount"; import { NoteContact } from "./NoteContact"; import { NoteOpportunity } from "./NoteOpportunity"; import { NoteOwner } from "./NoteOwner"; import { RemoteData } from "./RemoteData"; import { RemoteField } from "./RemoteField"; export declare const Note: core.serialization.ObjectSchema; export declare namespace Note { interface Raw { id?: string | null; remote_id?: string | null; created_at?: string | null; modified_at?: string | null; owner?: NoteOwner.Raw | null; content?: string | null; contact?: NoteContact.Raw | null; account?: NoteAccount.Raw | null; opportunity?: NoteOpportunity.Raw | 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; } }