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