/// import { EnrichedReaction, UR, EnrichedActivity } from 'getstream'; import { DefaultAT, DefaultUT } from '../context/StreamApp'; import { PropsWithElementAttributes } from '../utils'; export declare type LikeButtonProps = PropsWithElementAttributes<{ /** The activity received from stream that should be liked when pressing the LikeButton. */ activity?: EnrichedActivity; /** The reaction received from stream that should be liked when pressing the LikeButton. */ reaction?: EnrichedReaction; /** onAddReaction supports targetFeeds that you can use to send a notification to the post owner like ["notification:USER_ID"] */ targetFeeds?: string[]; }>; export declare const LikeButton: ({ activity, reaction, targetFeeds, className, style, }: LikeButtonProps) => JSX.Element; //# sourceMappingURL=LikeButton.d.ts.map