import { type ValidDate } from './is-valid-date.js'; type IsDateOnOrAfter = { (other: unknown): (value: unknown) => value is ValidDate; (other: unknown, value: unknown): value is ValidDate; }; /** * Asserts that a value is an instance of `Date` occurring on or after the exact date and time of another. * * @tags guard, dates, comparator */ export declare const isDateOnOrAfter: IsDateOnOrAfter; export {};