import * as z from "zod/v4-mini"; import { ClosedEnum } from "../../types/enums.js"; import { FilterCondition, FilterCondition$Outbound } from "./filter-condition.js"; import { SortCondition, SortCondition$Outbound } from "./sort-condition.js"; import { Status } from "./status.js"; export declare const PriceUnitFilterOrder: { readonly Asc: "asc"; readonly Desc: "desc"; }; export type PriceUnitFilterOrder = ClosedEnum; export type PriceUnitFilter = { endTime?: Date | undefined; expand?: string | undefined; /** * filters allows complex filtering based on multiple fields */ filters?: Array | undefined; limit?: number | undefined; offset?: number | undefined; order?: PriceUnitFilterOrder | undefined; priceUnitIds?: Array | undefined; sort?: Array | undefined; startTime?: Date | undefined; status?: Status | undefined; }; /** @internal */ export declare const PriceUnitFilterOrder$outboundSchema: z.ZodMiniEnum; /** @internal */ export type PriceUnitFilter$Outbound = { end_time?: string | undefined; expand?: string | undefined; filters?: Array | undefined; limit?: number | undefined; offset?: number | undefined; order?: string | undefined; price_unit_ids?: Array | undefined; sort?: Array | undefined; start_time?: string | undefined; status?: string | undefined; }; /** @internal */ export declare const PriceUnitFilter$outboundSchema: z.ZodMiniType; export declare function priceUnitFilterToJSON(priceUnitFilter: PriceUnitFilter): string; //# sourceMappingURL=price-unit-filter.d.ts.map