import React from 'react';
import type { IconProps } from '../../types/types';
type ReactionSelectorWithButtonProps = {
    ReactionIcon: React.ComponentType<IconProps>;
};
/**
 * Internal convenience component - not to be exported. It just groups the button and the dialog anchor and thus prevents
 * cluttering the parent component.
 */
export declare const ReactionSelectorWithButton: ({ ReactionIcon, }: ReactionSelectorWithButtonProps) => React.JSX.Element;
export {};
