import { Validateprops } from "./types";
/**
 * Validates the current step of a Formik form.
 *
 * @param errors - The errors object from Formik.
 * @param setTouched - The Formik setTouched function.
 * @param setFieldError - The Formik setFieldError function.
 * @param currentStep - The current step React element.
 * @returns A boolean indicating whether the current step is valid.
 */
export declare const validate: ({ errors, setTouched, setFieldError, currentStep, }: Validateprops) => boolean;
