import { z } from 'zod';
import { components } from '../types/api';
type FieldDefinition = components['schemas']['FieldDefinition'];
export declare const buildFilterSchemaFromFields: (fields: FieldDefinition[]) => z.ZodObject<{
    [x: string]: z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>;
}, z.core.$strip>;
export {};
