import { RollbarItemsResponse, RollbarProject, RollbarTopActiveItem } from './types'; /** @public */ export declare const rollbarApiRef: import("@backstage/core-plugin-api").ApiRef; /** @public */ export interface RollbarApi { getAllProjects(): Promise; getProject(projectName: string): Promise; getTopActiveItems(project: string, hours?: number): Promise; getProjectItems(project: string): Promise; }