/**
 * 生成一个唯一的ID
 * @returns 16位唯一ID，前8位基于时间戳，后8位基于密码学安全的随机数，包含大小写字母和数字
 */
export declare const gen: {
    id: () => string;
};
