import React from 'react'; type TFeedbackModal = { visible: boolean; onCancel: () => void; mobile?: string; isFiner: boolean; defaultFeedbackType?: 'normal' | 'doc' | 'list'; }; declare const FeedbackModal: React.FC; export default FeedbackModal;