export declare const generateUUID1: () => string; export declare const generateUUID: () => string; export declare const delay: (ms: number) => Promise; export declare const getImageUrl: (url: string) => string; export declare const getAssetsFile: (url: string) => string; export declare const formatFileSize: (size: number) => string; export declare const getFileType: (url: string) => string | undefined; export declare const getFile2String: (formData: AnyRecord) => string; export declare const downloadFile: (url: string, fileName: string) => void; export declare const formatDate: (date: Date) => string; export declare const getRandomPhone: () => string; export declare const getFileExtension: (fileName: string) => string | undefined; export declare function copyText(text: any): void; export declare const validateEmail: (email: string) => boolean; export declare const validateID: (id: string, country?: string) => any; export declare function updateDataArray(existingArray: any, newData: any): any; export declare function removeElementsByClassNameAndGetText(element: any, className: any): any; export declare function isMobileOrTablet(): boolean; export declare function sleep(ms: number): Promise; export declare const getMapKey: () => string;