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