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