import { TReferenceProps } from '../../..'; import { IDateProps, TDateValidatorResult } from '../_types'; export interface IIsDifferentThanProps { /** * The list of blacklisted values. */ values: Date[]; } /** * Check if the date is different than a list of values. */ export declare const isDifferentThan: (props: TReferenceProps & IDateProps) => TDateValidatorResult;