import { ValidationRule } from '../types'; /** Check that the value is not after the specified date (DD/MM/YYYY format) */ export declare function isNotBeforeDateFn(date: string, errorMessages?: import('../types').ErrorMessages): ValidationRule;