/**
 * Generates a unique id of the form `${prefix}-${randomString}-${suffix}`.
 *
 * @param {string} [prefix=''] - The prefix to use for the id.
 * @param {string} [suffix=''] - The suffix to use for the id.
 * @returns {string} - The unique id.
 */
export function uid(prefix?: string | undefined, suffix?: string | undefined): string;
//# sourceMappingURL=uid.d.ts.map