export declare function parseTime(time: any, cFormat: string): string; export declare function formatTime(time: any, option: any): string; export declare function paramObj(url: string): any; export declare function translateDataToTree(data: any[]): any[]; export declare function translateTreeToData(data: any): any[]; export declare function tenBitTimestamp(time: number): string; export declare function thirteenBitTimestamp(time: number): string; export declare function uuid(length?: number): string; export declare function random(m: number, n: number): number; export declare const on: (element: any, event: any, handler: any, useCapture?: boolean) => void; export declare const off: (element: any, event: any, handler: any, useCapture?: boolean) => void; export declare function shuffle(array: any[]): any[]; export declare function handleTree(data: any, id: any, parentId: any, children: any): any; export declare function get(key: string): string; export declare function saveLocal(key: string, obj: object | string): void; export declare function getLocal(key: string): any; export declare function delLocal(key: string): void; export declare function saveSession(key: string, obj: object | string): void; export declare function getSession(key: string): any; export declare function delSession(key: string): void; export declare function delkeyOutsideLocal(keyArr: Array): void; export declare function delkeyLocal(keyArr: Array): void; export declare function addToLocal(name: string, obj: any): any; export declare function changeKeyName(arr1: any[], arr2: any[], arr3: any): any; export declare function findIndex(arr: any[], id: any, idKey: string): number | false; export declare function findItem(arr: any[], id: any, idKey: string): any; export declare function filterIdArr(idArr: any[], arr: any[], idKey: string): any[]; export declare function getParentIds(data: any, id: any, idkey: string, childrenkey: string): any[]; export declare function getParentItems(data: any, id: any, idkey: string, childrenkey: string): any[]; export declare function getIdVal(data: any, id: any, idkey: string, childrenkey: string, name: string): any; export declare function getIdItem(data: any, id: any, idkey: string, childrenkey: string): any;