export declare class UUID { private static _instanced; private _id; private _dic; constructor(); get newId(): number; getID(prefix?: string, showPrefix?: boolean): number | string; static get Instanced(): UUID; /** * @description : 生成唯一ID * @param {*} * @return {*} * @example : */ static get unique(): string; }