import type React from 'react'; interface EmojiPickerProps { /** Called when an emoji is selected */ onSelect: (emoji: string) => void; /** Called when the picker should close */ onClose: () => void; /** Disable the picker */ disabled?: boolean; /** Translator function from host app */ t: (key: string, fallback?: string) => string; } export declare const EmojiPicker: React.FC; export {}; //# sourceMappingURL=EmojiPicker.d.ts.map