///
import type { PDSTextType } from '../../../common';
export type ReactionButtonProps = {
text?: PDSTextType;
iconName?: 'ic_thumb_up' | 'ic_heart' | 'ic_thumb_down' | 'ic_reply';
status?: 'default' | 'select';
colorTheme?: 'none' | 'dark';
displayType?: 'icon_only' | 'icon_text';
onClick?: (e: React.MouseEvent) => void;
onMouseDown?: (e: React.MouseEvent) => void;
};
declare function ReactionButton({ text, iconName, status, colorTheme, displayType, onClick, onMouseDown }: ReactionButtonProps): JSX.Element;
export default ReactionButton;