import { IValueLikePlugin, ICloneContext } from "change-checker";
export declare class DatePlugin implements IValueLikePlugin<Date> {
    name: string;
    isValueLikePlugin: true;
    clone(_: ICloneContext, instance: Date): Date;
    equals(left: Date, right: Date): boolean;
    isMatch(instance: any): instance is Date;
}
declare module "change-checker/types/ValueLikeRegistry" {
    interface IValueLikeRegistry {
        date: Date;
    }
}
