import * as z from "zod/v3"; import { ClosedEnum } from "../../types/enums.js"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export declare const FileSearchComparisonFilterType: { readonly Eq: "eq"; readonly Ne: "ne"; readonly Gt: "gt"; readonly Gte: "gte"; readonly Lt: "lt"; readonly Lte: "lte"; }; export type FileSearchComparisonFilterType = ClosedEnum; export type FileSearchComparisonFilterValue = string | number | boolean; export type FileSearchComparisonFilter = { type: FileSearchComparisonFilterType; key: string; value: string | number | boolean; }; /** @internal */ export declare const FileSearchComparisonFilterType$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const FileSearchComparisonFilterType$outboundSchema: z.ZodNativeEnum; /** @internal */ export declare const FileSearchComparisonFilterValue$inboundSchema: z.ZodType; /** @internal */ export type FileSearchComparisonFilterValue$Outbound = string | number | boolean; /** @internal */ export declare const FileSearchComparisonFilterValue$outboundSchema: z.ZodType; export declare function fileSearchComparisonFilterValueToJSON(fileSearchComparisonFilterValue: FileSearchComparisonFilterValue): string; export declare function fileSearchComparisonFilterValueFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const FileSearchComparisonFilter$inboundSchema: z.ZodType; /** @internal */ export type FileSearchComparisonFilter$Outbound = { type: string; key: string; value: string | number | boolean; }; /** @internal */ export declare const FileSearchComparisonFilter$outboundSchema: z.ZodType; export declare function fileSearchComparisonFilterToJSON(fileSearchComparisonFilter: FileSearchComparisonFilter): string; export declare function fileSearchComparisonFilterFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=filesearchcomparisonfilter.d.ts.map