/// import { GitHubReaction, ReactionType } from '../../../../__generated__/graphql'; type GithubReactIconMap = { [key in ReactionType]: React.FunctionComponent<{ size?: string; }>; }; declare const GithubReactIconsMap: GithubReactIconMap; declare function renderReactions(reactions: GitHubReaction[], positiveOnly?: boolean): import("react/jsx-runtime").JSX.Element[]; export { GithubReactIconsMap, renderReactions };