import { InputFieldProps, FormFieldsProps } from '../../types/InputProps'; import { default as dayjs } from 'dayjs'; import * as Yup from "yup"; export declare const getAllFields: (allForms: FormFieldsProps[]) => InputFieldProps[]; export declare const isSameOrAfter: (end: dayjs.ConfigType, start: dayjs.ConfigType) => boolean; export declare const getInputs: (fields: InputFieldProps[], initialValue?: any) => { validationSchema: Yup.ObjectSchema<{ [x: string]: any; }, Yup.AnyObject, { [x: string]: any; }, "">; initialValues: T; inputs: InputFieldProps[]; };