useId.d.ts 232 B

12345
  1. /** Is client side and not jsdom */
  2. export declare const isBrowserClient: boolean;
  3. /** Get unique id for accessibility usage */
  4. export declare function getUUID(): number | string;
  5. export default function useId(id?: string): string;