import React from 'react'; import type { ReactionResponse } from 'open-chat-js'; import { MessageContextValue } from '../../context/MessageContext'; import type { DefaultStreamChatGenerics } from '../../types/types'; import type { ReactionOptions } from './reactionOptions'; export type SimpleReactionsListProps = Partial> & { /** An array of the own reaction objects to distinguish own reactions visually */ own_reactions?: ReactionResponse[]; /** An object that keeps track of the count of each type of reaction on a message */ reaction_counts?: { [key: string]: number; }; /** A list of the currently supported reactions on a message */ reactionOptions?: ReactionOptions; /** An array of the reaction objects to display in the list */ reactions?: ReactionResponse[]; }; export declare const SimpleReactionsList: (props: SimpleReactionsListProps) => React.JSX.Element | null; //# sourceMappingURL=SimpleReactionsList.d.ts.map