import type * as Merge from "../../../../api/index"; import * as core from "../../../../core"; import type * as serializers from "../../../index"; import { AccountAccountType } from "./AccountAccountType"; import { AccountClassification } from "./AccountClassification"; import { AccountCompany } from "./AccountCompany"; import { AccountCurrency } from "./AccountCurrency"; import { AccountStatus } from "./AccountStatus"; import { RemoteData } from "./RemoteData"; export declare const Account: core.serialization.ObjectSchema; export declare namespace Account { interface Raw { id?: string | null; remote_id?: string | null; created_at?: string | null; modified_at?: string | null; name?: string | null; description?: string | null; classification?: AccountClassification.Raw | null; type?: string | null; account_type?: AccountAccountType.Raw | null; status?: AccountStatus.Raw | null; current_balance?: number | null; currency?: AccountCurrency.Raw | null; account_number?: string | null; parent_account?: string | null; company?: AccountCompany.Raw | null; remote_was_deleted?: boolean | null; field_mappings?: Record | null; remote_data?: RemoteData.Raw[] | null; } }