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