export function findIndex(ary: any, fn: any): any; export function deepCopy(obj: any): any; export function deepAssign(to: any, from: any): void; export function isArray(args: any): boolean; export function isString(args: any): boolean; export function isNumber(args: any): boolean; export function isObject(args: any): boolean; export function isBoolean(args: any): boolean; export function isNull(args: any): boolean; export function isDef(v: any): boolean; export function isUndefined(args: any): boolean; export function isError(args: any): boolean; export function isFunction(v: any): boolean; export function isPromise(v: any): boolean; export function debounce(func: any, wait: any, options: any): { (...args: any[]): any; cancel: () => void; flush: () => any; pending: () => boolean; }; export function throttle(func: any, wait: any, options: any): { (...args: any[]): any; cancel: () => void; flush: () => any; pending: () => boolean; }; export function isNative(Ctor: any): boolean; export function isMobile(value: any): boolean; export function formatMobile(val: any): any; export function formatBankCard(val: any): any; export function formatFontSize(value: any): any; export function formatEmail(value: any): any; export function formatTitle(tit: any): any; export function outerWidth(el: any, includeMargin?: boolean): any; export function outerHeight(el: any, includeMargin?: boolean): any; export function hexToRgb(hex: any, alpha: any): string; export function randomString(len: any): string; export function getParam(key: any, url: any): any; export function isHidden(el: any): boolean; export function range(num: any, min: any, max: any): number; export function getIOSVersion(ua: any): { major: number; minor: number; patch: number; }; export function getParameter(name: any, str?: string): string; export function getErrmsg(e: any): any; export function getApiData(pageData: any): { applicant: {}; insureds: any[]; hctext: { certificate: {}; socialIns: {}; resident: {}; office: {}; companyCertificate: {}; companyAddress: {}; }; apphctext: { certificate: {}; socialIns: {}; resident: {}; office: {}; companyCertificate: {}; companyAddress: {}; }; hcpics: { certificate: {}; socialIns: {}; resident: {}; office: {}; companyCertificate: {}; companyAddress: {}; }; apphcpics: { certificate: {}; socialIns: {}; resident: {}; office: {}; companyCertificate: {}; companyAddress: {}; }; makeup: {}; }; export function createUUID(len?: number): string; export function monitorMemory(lable?: string): void; export function isPdfUrl(url: any): boolean; export function parseEncodedFile(input: string): { id: string; originalName: string; error: string | null; }; export namespace ua { export { isIE }; export { isMobileDevice as isMobile }; export { isIE9 }; export { isEdge }; export { isAndroid }; export { isIOS }; export { isHarmonyOS }; export { isChrome }; export { isWx }; export { isWxWork }; export { isApp }; export { isXysApp }; export { isKcbApp }; export { isYxApp }; } export const isMucWebAutoTester: boolean; export function isIphonexOrMore(): boolean; declare let isIE: boolean; declare let isMobileDevice: boolean; declare let isIE9: boolean; declare let isEdge: boolean; declare let isAndroid: boolean; declare let isIOS: boolean; declare const isHarmonyOS: boolean; declare let isChrome: boolean; declare let isWx: boolean; declare let isWxWork: boolean; declare let isApp: boolean; declare let isXysApp: boolean; declare let isKcbApp: boolean; declare let isYxApp: boolean; export {};