export interface EmojiCategory { id: string; label: string; emojis: string[]; } interface EmojiPickerProps { categories?: EmojiCategory[]; class?: string; onselect?: (emoji: string) => void; } declare const EmojiPicker: import("svelte").Component; type EmojiPicker = ReturnType; export default EmojiPicker;