/// import type { Emoji } from '../type/Emoji'; import type { EmojiPaneStyle } from '../type/EmojiPaneStyles'; import type { IProcessedStyleSet } from '@fluentui/react/lib/Styling'; /** * @internal * Emoji Status Bar data */ export interface EmojiStatusBarProps { emoji: Emoji; strings: Record; hasResult: boolean; classNames: IProcessedStyleSet; } /** * @internal * Emoji status bar component */ export declare function EmojiStatusBar(props: EmojiStatusBarProps): JSX.Element;