import type { DateOptions } from '../types/index'; /** * Check if the string is Date * * @param input - Options object * @param options - Options object * @returns True if the string matches the validation, false otherwise */ export default function isDate(input: string | Date, options: string | DateOptions): boolean;