import type { Validator } from './base'; export declare interface TimeValidatorType extends Validator { min: (min: string) => TimeValidatorType max: (max: string) => TimeValidatorType length: (length: number) => TimeValidatorType custom: (fn: (value: string | null | undefined) => boolean, message: string) => TimeValidatorType }