///
import type { EmojiFamilyKeys } from '../utils/emojiList';
import type { EmojiPaneStyle } from '../type/EmojiPaneStyles';
import type { IProcessedStyleSet } from '@fluentui/react/lib/Styling';
/**
* @internal
* Emoji Nav Bar data
*/
export interface EmojiNavBarProps {
onClick?: (selected: string) => void;
currentSelected?: string;
getTabId?: (selected: EmojiFamilyKeys) => string;
strings: Record;
classNames: IProcessedStyleSet;
}
/**
* @internal
*/
export declare function EmojiNavBar(props: EmojiNavBarProps): JSX.Element;