export declare class CTYValidate { static IsMobileNo(val: string): boolean; static IsEmail(val: string): boolean; static IsRealNameForm(str: string): boolean; static IdentityCodeValid(val: string): boolean; static IsJSONObject(val: T): boolean; static IsEmptyArray(val: T): boolean; static IsEmptyObject(val: T): boolean; static IsPrimitive(val: T): boolean; static IsDef(val: T): boolean; static IsPromise(val: T): boolean; static IsHttp(val: string): boolean; }