import { AnySchema } from './AnySchema'; export declare class StringSchema extends AnySchema { readonly schema = "string"; constructor(); min(min: number): this; max(max: number): this; trim(): this; regex(reg: RegExp): this; email(): this; optional(): StringSchema; nullable(): StringSchema; }