import { BaseDecoratorOptions } from '../types'; declare type PropertyDateParams = { minDate?: Date; } & BaseDecoratorOptions; export declare function ApiPropertyDate({ isOptional, minDate, ...options }?: PropertyDateParams): PropertyDecorator; export {};