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