import React from 'react'; import ProjectReportStore from './store'; interface Props { store: ProjectReportStore; edit?: boolean; preview?: boolean; refresh?: () => void; } declare const ReportPage: React.FC; export default ReportPage;