import { SupportedTypesEnum } from '.'; export interface SchemaItem { max?: number; min?: number; required?: boolean; type: SupportedTypesEnum; validate?: { validator: (fieldValue: any) => boolean; message?: string; }; enum?: Record; } //# sourceMappingURL=SchemaItem.d.ts.map