import { FilesMatch } from './FilesMatch'; import { Issue } from '../issue'; interface Report { getDependencies(): Promise; getIssues(): Promise; close(): Promise; } export { Report };