/** * Checks if a given date is in the future. * * @example * isFuture("2099-01-01") // true * * @param date The date to check. * @param includeTime Whether to include time in the comparison. * @returns True if the date is in the future. */ export declare function isFuture(date: Date | string | number | null, includeTime?: boolean): boolean;