import 'core-js/es6/promise'; import 'core-js/es6/set'; export declare const isNotEmpty: (value: any) => Promise; export declare const isEmail: (email: any) => Promise; export declare const isNumber: (number: any) => Promise; export declare const isStringLength: (length: any, value: any) => Promise; export declare const isUrl: (value: any) => Promise; export declare const isMobileNumber: (phoneNumber: string, countryCode: string) => boolean; export declare const isLandlineNumber: (landline: string, countryCode: string) => boolean; declare const validate: { isEmail: (email: any) => Promise; isNotEmpty: (value: any) => Promise; isNumber: (number: any) => Promise; isStringLength: (length: any, value: any) => Promise; isUrl: (value: any) => Promise; isMobileNumber: (phoneNumber: string, countryCode: string) => boolean; isLandlineNumber: (landline: string, countryCode: string) => boolean; }; export default validate;