import { BaseValidator } from "./core.js"; export declare class StringValidator extends BaseValidator { min(len: number, msg?: string): this; max(len: number, msg?: string): this; /** * Validates email format using a more comprehensive regex pattern. */ email(msg?: string): this; } export declare class NumberValidator extends BaseValidator { min(n: number, msg?: string): this; max(n: number, msg?: string): this; } //# sourceMappingURL=primitives.d.ts.map