import type { LengthValidator, Validator } from './base'; export declare interface BinaryValidatorType extends Validator, LengthValidator { custom: (fn: (value: string) => boolean, message: string) => BinaryValidatorType }