import { type ValidDate } from './is-valid-date.js'; type IsAfter = { (otherDate: ValidDate): (date: unknown) => date is ValidDate; (otherDate: ValidDate, date: unknown): date is ValidDate; }; /** * Asserts that a value is a valid instance of `Date` whose value occurs after that of another. * * @tags guard, dates, comparator */ export declare const isAfter: IsAfter; export {};