interface EmoticonFieldProps {
    readonly onAddEmoji: (value: string) => void;
    readonly onSendEmoticon: (emoticonUrl: string) => void;
}
declare const EmoticonField: ({ onAddEmoji, onSendEmoticon }: EmoticonFieldProps) => import("react/jsx-runtime").JSX.Element;
export default EmoticonField;
