import { Dispatch, SetStateAction } from 'react';
interface IProps {
    showEmojiPicker: boolean;
    setShowEmojiPicker: (value: SetStateAction<boolean>) => void;
    setCurrentEmoji: Dispatch<SetStateAction<string>>;
    currentEmoji: string;
    theme?: "dark" | "light";
}
declare const Button: ({ currentEmoji, setCurrentEmoji, setShowEmojiPicker, showEmojiPicker, theme, }: IProps) => import("react/jsx-runtime").JSX.Element;
export default Button;
