import { FunctionComponent } from 'react';

interface SentimentArrowProps {
    commentCard?: boolean;
    sentimentScore?: number;
}
declare const SentimentArrow: FunctionComponent<SentimentArrowProps>;

export { SentimentArrow as default };
export type { SentimentArrowProps };
