import type * as Merge from "../../../../api/index"; import * as core from "../../../../core"; import type * as serializers from "../../../index"; import { RemoteData } from "./RemoteData"; import { RemoteUserAccessRole } from "./RemoteUserAccessRole"; export declare const RemoteUser: core.serialization.ObjectSchema; export declare namespace RemoteUser { interface Raw { id?: string | null; remote_id?: string | null; created_at?: string | null; modified_at?: string | null; first_name?: string | null; last_name?: string | null; email?: string | null; disabled?: boolean | null; remote_created_at?: string | null; access_role?: RemoteUserAccessRole.Raw | null; remote_was_deleted?: boolean | null; field_mappings?: Record | null; remote_data?: RemoteData.Raw[] | null; } }