import { ReactElement } from 'react';
import './index.scss';
import { CoreMessageType } from '../../utils';
import { FeedbackRating } from '@sendbird/chat/message';
/**
 * @deprecated This feature is deprecated and will be removed in May 2026.
 */
export interface MessageFeedbackModalProps {
    selectedFeedback: FeedbackRating | undefined;
    message: CoreMessageType;
    onClose?: () => void;
    onSubmit?: (selectedFeedback: FeedbackRating, comment: string) => void;
    onUpdate?: (selectedFeedback: FeedbackRating, comment: string) => void;
    onRemove?: () => void;
}
/**
 * @deprecated This feature is deprecated and will be removed in May 2026.
 */
export default function MessageFeedbackModal(props: MessageFeedbackModalProps): ReactElement;
