export interface Props { /** Emoji set to offer. */ emojis?: string[]; /** Accessible label for the group. Defaults to a translated "Add reaction". */ label?: string; /** * Accessible name for each emoji button. Defaults to a built-in name for the * common reactions, else a translated "React with {emoji}". */ emojiLabel?: (emoji: string) => string; /** Whether the picker is shown. */ isOpen?: boolean; /** Fired with the chosen emoji. */ onpick?: (emoji: string) => void; } declare const ReactionPicker: import("svelte").Component; type ReactionPicker = ReturnType; export default ReactionPicker; //# sourceMappingURL=ReactionPicker.svelte.d.ts.map