import type * as Merge from "../../../../api/index"; import * as core from "../../../../core"; import type * as serializers from "../../../index"; import { JournalLineAccount } from "./JournalLineAccount"; import { JournalLineCurrency } from "./JournalLineCurrency"; import { JournalLineProject } from "./JournalLineProject"; import { JournalLineTrackingCategoriesItem } from "./JournalLineTrackingCategoriesItem"; import { JournalLineTrackingCategory } from "./JournalLineTrackingCategory"; import { RemoteField } from "./RemoteField"; export declare const JournalLine: core.serialization.ObjectSchema; export declare namespace JournalLine { interface Raw { id?: string | null; remote_id?: string | null; created_at?: string | null; modified_at?: string | null; account?: JournalLineAccount.Raw | null; net_amount?: number | null; tracking_category?: JournalLineTrackingCategory.Raw | null; tracking_categories?: (JournalLineTrackingCategoriesItem.Raw | null | undefined)[] | null; currency?: JournalLineCurrency.Raw | null; company?: string | null; employee?: string | null; project?: JournalLineProject.Raw | null; contact?: string | null; tax_rate?: string | null; description?: string | null; exchange_rate?: string | null; remote_was_deleted?: boolean | null; remote_fields?: RemoteField.Raw[] | null; } }