export interface FindingSummary { timestamp: string; issueCount: number; dependencyCount: number; projectDefaultBranch: string; projectUrl: string; } export declare const fossaApiRef: import("@backstage/core-plugin-api").ApiRef; export type FossaApi = { /** * Get the finding summary for a list of projects * * @param projectTitles - a list of project titles in FOSSA */ getFindingSummaries(projectTitles: Array): Promise>; /** * Get the finding summary of a single project. * * @param projectTitle - the project title in FOSSA */ getFindingSummary(projectTitle: string): Promise; };