declare type CheckFunction = typeof Math.max | typeof Math.min; declare const getAge: (currentDate: string) => number; declare const ageChecker: (currentDate: string, ageCondition: number, checker: CheckFunction) => boolean; declare const isValidDate: (currentDate: string) => boolean; export { ageChecker, getAge, isValidDate };