import * as React from 'react'; import type { Emoji } from '../type/Emoji'; import type { EmojiPaneStyle } from '../type/EmojiPaneStyles'; import type { IProcessedStyleSet } from '@fluentui/react/lib/Styling'; /** * @internal * Emoji icon data */ export interface EmojiIconProps { id: string; emoji: Emoji; strings: Record; classNames: IProcessedStyleSet; onClick?: (e: React.MouseEvent) => void; onMouseOver?: (e: React.MouseEvent) => void; onFocus?: React.FocusEventHandler; isSelected?: boolean; } /** * @internal * Emoji icon component */ export declare function EmojiIcon(props: EmojiIconProps): JSX.Element;