import { BaseValidator } from './base'; import type { TimeValidatorType, ValidationNames } from '../types/index'; // Export a function to create time validators export declare function time(): TimeValidator; export declare class TimeValidator extends BaseValidator implements TimeValidatorType { name: ValidationNames; constructor(); min(min: string): this; max(max: string): this; length(length: number): this; custom(fn: (value: string | null | undefined) => boolean, message: string): this; }