///
import { ReactionsRecords, UR } from 'getstream';
import { ReactionIconProps } from './ReactionIcon';
import { DefaultUT } from '../context/StreamApp';
import { PropsWithElementAttributes } from '../utils';
declare type ReactionToggleIconProps = PropsWithElementAttributes<{
/** The icon to show when the user has done this reaction (e.g. a filled in heart) */
activeIcon: ReactionIconProps['icon'];
/** The icon to show when the user has not done this reaction yet (e.g. an empty in heart) */
inactiveIcon: ReactionIconProps['icon'];
/** The map with own reactions */
own_reactions?: ReactionsRecords