import * as React from 'react';
import { RatingType } from '../../../../models/MessageModel';
type Props = {
    type: RatingType;
    activeType: RatingType | undefined;
    onClick: (type: RatingType) => void;
    tooltip?: string;
};
declare const MessageFeedbackButton: React.FC<Props>;
export default MessageFeedbackButton;
