import * as z from "zod/v4-mini"; import { DataType } from "./data-type.js"; import { FilterOperatorType } from "./filter-operator-type.js"; import { Value, Value$Outbound } from "./value.js"; export type FilterCondition = { dataType?: DataType | undefined; field?: string | undefined; operator?: FilterOperatorType | undefined; value?: Value | undefined; }; /** @internal */ export type FilterCondition$Outbound = { data_type?: string | undefined; field?: string | undefined; operator?: string | undefined; value?: Value$Outbound | undefined; }; /** @internal */ export declare const FilterCondition$outboundSchema: z.ZodMiniType; export declare function filterConditionToJSON(filterCondition: FilterCondition): string; //# sourceMappingURL=filter-condition.d.ts.map