import 'umi/typings';
import React from 'react';

declare global {
  namespace JSX {
    interface IntrinsicElements {
      'em-emoji': React.DetailedHTMLProps<
        React.HTMLAttributes<HTMLElement>,
        HTMLElement,
        {
          shortcodes: string,
          native: string,
          size: string,
          fallback: string,
          set: string,
          skin: 1 | 2 | 3 | 4 | 5 | 6
        }
      >;
    }
  }
}