/// <reference types="react" />
export interface Reaction {
    node: React.ReactNode;
    label: string;
}
export interface ReactionCounterObject {
    node: JSX.Element;
    label: string;
    by: string;
}
