/// 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 | Record; } & Omit>; export declare const ReactionToggleIcon: ({ inactiveIcon, activeIcon, own_reactions: ownReactions, kind, className, style, ...restProps }: ReactionToggleIconProps) => JSX.Element; export {}; //# sourceMappingURL=ReactionToggleIcon.d.ts.map