import React from 'react';
interface Props {
    show: boolean;
    onClose: () => void;
    onSuccess?: () => void;
    payload?: {
        surveyId: string;
        customerId: string;
        meta?: Record<string, any>;
    };
    optionsModal?: {
        title?: string;
        descriptionScore?: string;
        thankyou?: string;
        illustration?: string;
        followupQuestion?: string;
        survey_type?: string;
        color?: string;
    };
}
declare function ModalFeedback({ show, onClose, onSuccess, payload, optionsModal }: Props): React.JSX.Element;
export default ModalFeedback;
