import { VisualSize } from './types'; import { emojiMap } from '../../modules/Emoji/constants/emojis'; export type EmojiName = keyof typeof emojiMap; export interface EmojiProps { name: EmojiName; size?: VisualSize; className?: string; } //# sourceMappingURL=emoji.d.ts.map