/** * @license * Copyright Slavko Mihajlovic All Rights Reserved. * * Use of this source code is governed by an ISC-style license that can be * found at https://www.isc.org/licenses/ */ import { ComparisonOperations } from "../types"; /** * @publicApi */ export declare const compareDates: (date1: Date, date2: Date, operation?: ComparisonOperations) => boolean;