export declare class DesiValidator {
    static jaruri: (value: any) => boolean;
    static email: (value: string) => boolean;
    static mobile: (value: string) => boolean;
    static minLength: (length: number) => (value: string) => boolean;
    static maxLength: (length: number) => (value: string) => boolean;
}
