import * as z from "zod/v4-mini"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "./sdk-validation-error.js"; import { Status } from "./status.js"; import { TaxRateEntityType } from "./tax-rate-entity-type.js"; import { TaxRateResponse } from "./tax-rate-response.js"; export type TaxAppliedResponse = { appliedAt?: Date | undefined; createdAt?: Date | undefined; createdBy?: string | undefined; currency?: string | undefined; entityId?: string | undefined; entityType?: TaxRateEntityType | undefined; environmentId?: string | undefined; id?: string | undefined; idempotencyKey?: string | undefined; metadata?: { [k: string]: string; } | undefined; status?: Status | undefined; taxAmount?: string | undefined; taxAssociationId?: string | undefined; taxRate?: TaxRateResponse | undefined; taxRateId?: string | undefined; taxableAmount?: string | undefined; tenantId?: string | undefined; updatedAt?: Date | undefined; updatedBy?: string | undefined; }; /** @internal */ export declare const TaxAppliedResponse$inboundSchema: z.ZodMiniType; export declare function taxAppliedResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=tax-applied-response.d.ts.map