import { ElementType } from 'react'; import { type HTMLAttributes } from 'react'; import { EmojiType } from "../getFluentEmojiCDN/utils"; export interface FluentEmojiProps extends HTMLAttributes { as?: ElementType; cdn?: 'aliyun' | 'unpkg'; emoji: string; size?: number; type?: EmojiType | 'pure'; unoptimized?: boolean; } declare const FluentEmoji: import("react").ForwardRefExoticComponent>; export default FluentEmoji;