/** * Generates a cryptographically secure unique ID. * * @since 1.0.0 * * @returns {string} - A unique ID string. * * @example * const id1 = uniqueId2(); // id1 is a unique ID string * const id2 = uniqueId2(); // id2 is a different unique ID string */ declare const uniqueId2: () => any; export default uniqueId2;