import React from 'react'; interface IReport { reportName: string | undefined; templateName: string | undefined; templateDisplayName: string | undefined; } declare const ReportContext: React.Context<{ items: IReport[]; }>; export default ReportContext;