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