import { StatusBar } from '@theia/core/lib/browser/status-bar/status-bar'; import { GithubService } from '../common/github-service'; import { GitHubProperties } from './github-properties'; import { User } from '../common/github-model'; import { FrontendApplicationContribution, FrontendApplication } from '@theia/core/lib/browser'; export declare class GitHubFrontendContribution implements FrontendApplicationContribution { protected readonly statusBar: StatusBar; protected readonly gitHubProperties: GitHubProperties; protected readonly gitHubService: GithubService; constructor(statusBar: StatusBar, gitHubProperties: GitHubProperties, gitHubService: GithubService); onStart(app: FrontendApplication): void; protected updateStatusBar(): void; protected onUserChanged(user: User | undefined): void; } //# sourceMappingURL=github-frontend-contribution.d.ts.map