import { RefObject, SetStateAction } from 'react';
import { Emoji } from '../types';
interface IProps {
    pickerRef: RefObject<HTMLDivElement | null>;
    showSkinToneVariants: boolean;
    setLongPressEmoji: (value: SetStateAction<Emoji | null>) => void;
}
declare const useResetLongPressEmoji: ({ pickerRef, setLongPressEmoji, showSkinToneVariants, }: IProps) => void;
export default useResetLongPressEmoji;
