import * as z from "zod/v4-mini"; import { ClosedEnum } from "../../types/enums.js"; export declare const GetTaxRatesOrder: { readonly Asc: "asc"; readonly Desc: "desc"; }; export type GetTaxRatesOrder = ClosedEnum; export declare const Scope: { readonly Internal: "INTERNAL"; readonly External: "EXTERNAL"; readonly Onetime: "ONETIME"; }; export type Scope = ClosedEnum; export declare const GetTaxRatesStatus: { readonly Published: "published"; readonly Deleted: "deleted"; readonly Archived: "archived"; }; export type GetTaxRatesStatus = ClosedEnum; export type GetTaxRatesRequest = { endTime?: string | undefined; expand?: string | undefined; limit?: number | undefined; offset?: number | undefined; order?: GetTaxRatesOrder | undefined; scope?: Scope | undefined; startTime?: string | undefined; status?: GetTaxRatesStatus | undefined; taxrateCodes?: Array | undefined; taxrateIds?: Array | undefined; }; /** @internal */ export declare const GetTaxRatesOrder$outboundSchema: z.ZodMiniEnum; /** @internal */ export declare const Scope$outboundSchema: z.ZodMiniEnum; /** @internal */ export declare const GetTaxRatesStatus$outboundSchema: z.ZodMiniEnum; /** @internal */ export type GetTaxRatesRequest$Outbound = { end_time?: string | undefined; expand?: string | undefined; limit?: number | undefined; offset?: number | undefined; order?: string | undefined; scope?: string | undefined; start_time?: string | undefined; status?: string | undefined; taxrate_codes?: Array | undefined; taxrate_ids?: Array | undefined; }; /** @internal */ export declare const GetTaxRatesRequest$outboundSchema: z.ZodMiniType; export declare function getTaxRatesRequestToJSON(getTaxRatesRequest: GetTaxRatesRequest): string; //# sourceMappingURL=get-tax-rates-op.d.ts.map