import type * as Merge from "../../../../api/index"; import * as core from "../../../../core"; import type * as serializers from "../../../index"; import { PaymentTermCompany } from "./PaymentTermCompany"; import { RemoteData } from "./RemoteData"; export declare const PaymentTerm: core.serialization.ObjectSchema; export declare namespace PaymentTerm { interface Raw { id?: string | null; remote_id?: string | null; created_at?: string | null; modified_at?: string | null; name: string; is_active?: boolean | null; company?: PaymentTermCompany.Raw | null; days_until_due?: number | null; discount_days?: number | null; remote_last_modified_at?: string | null; field_mappings?: Record | null; remote_data?: RemoteData.Raw[] | null; } }