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