import React from 'react'; export interface ReportModalProps { isOpen: boolean; onClose: () => void; onReport: (reason: string) => Promise; reportType: 'user' | 'post'; targetUsername: string; targetPermlink?: string; } export declare const ReportModal: React.FC;