import type * as Merge from "../../../../api/index"; import * as core from "../../../../core"; import type * as serializers from "../../../index"; import { RemoteData } from "./RemoteData"; import { RemoteField } from "./RemoteField"; export declare const User: core.serialization.ObjectSchema; export declare namespace User { interface Raw { id?: string | null; remote_id?: string | null; created_at?: string | null; modified_at?: string | null; name?: string | null; email?: string | null; is_active?: boolean | null; remote_was_deleted?: boolean | null; field_mappings?: Record | null; remote_data?: RemoteData.Raw[] | null; remote_fields?: RemoteField.Raw[] | null; } }