import { DateService } from '@tc-libs/helper'; import { ValidationOptions, ValidatorConstraintInterface } from 'class-validator'; export declare class MinDateTodayConstraint implements ValidatorConstraintInterface { private readonly _date; constructor(_date: DateService); validate(value: string): boolean; } export declare function MinDateToday(validationOptions?: ValidationOptions): (object: Record, propertyName: string) => void;