/** * Generates a unique id. * * TODO: Once we're on React 18, we can use the `useId` hook instead of rolling * our own with `useRef` and lodash. */ export default function useId(prefix?: string, providedId?: string): string;