/** * Function returns true if the date parameter is a date after today, else returns false * @param {string} date - date string e.g. '03-12-2021' * @param {boolean} config.todayAllowed - true if today should be a valid date * @returns true if date is after current date */ declare const mustBeInTheFuture: (date: any, config: any) => boolean; export default mustBeInTheFuture;