import { FieldConfig } from './types';
import * as yup from 'yup';
export declare const generateSchema: (fields: FieldConfig[]) => yup.ObjectSchema<{
    [x: string]: any;
}, yup.AnyObject, {
    [x: string]: any;
}, "">;
