import type * as Merge from "../../../../api/index"; import * as core from "../../../../core"; import type * as serializers from "../../../index"; import { ItemCompany } from "./ItemCompany"; import { ItemPurchaseAccount } from "./ItemPurchaseAccount"; import { ItemPurchaseTaxRate } from "./ItemPurchaseTaxRate"; import { ItemSalesAccount } from "./ItemSalesAccount"; import { ItemSalesTaxRate } from "./ItemSalesTaxRate"; import { ItemStatus } from "./ItemStatus"; import { ItemType } from "./ItemType"; import { RemoteData } from "./RemoteData"; export declare const Item: core.serialization.ObjectSchema; export declare namespace Item { interface Raw { id?: string | null; remote_id?: string | null; created_at?: string | null; modified_at?: string | null; name?: string | null; status?: ItemStatus.Raw | null; type?: ItemType.Raw | null; unit_price?: number | null; purchase_price?: number | null; purchase_account?: ItemPurchaseAccount.Raw | null; sales_account?: ItemSalesAccount.Raw | null; company?: ItemCompany.Raw | null; purchase_tax_rate?: ItemPurchaseTaxRate.Raw | null; sales_tax_rate?: ItemSalesTaxRate.Raw | null; remote_updated_at?: string | null; remote_was_deleted?: boolean | null; field_mappings?: Record | null; remote_data?: RemoteData.Raw[] | null; } }