/**
 * Gets unique string ID.
 * @param length{Number=} - length of ID
 * @return {string}
 * @example
 * // How to generate unique string ID?
 * const uniqueId = getId(100);
 * console.log(uniqueId.length); // 100
 */
export function getId(length?: number | undefined): string;
//# sourceMappingURL=index.d.ts.map