import type * as Merge from "../../../../api/index"; import * as core from "../../../../core"; import type * as serializers from "../../../index"; import { RemoteData } from "./RemoteData"; import { TaxComponent } from "./TaxComponent"; import { TaxRateCompany } from "./TaxRateCompany"; import { TaxRateStatus } from "./TaxRateStatus"; export declare const TaxRate: core.serialization.ObjectSchema; export declare namespace TaxRate { interface Raw { id?: string | null; remote_id?: string | null; created_at?: string | null; modified_at?: string | null; company?: TaxRateCompany.Raw | null; code?: string | null; name?: string | null; description?: string | null; status?: TaxRateStatus.Raw | null; country?: string | null; total_tax_rate?: number | null; effective_tax_rate?: number | null; tax_components?: TaxComponent.Raw[] | null; remote_was_deleted?: boolean | null; field_mappings?: Record | null; remote_data?: RemoteData.Raw[] | null; } }