import { GitHubBot } from './base'; export declare class GitHubBotWithEventHandling extends GitHubBot { private updateStatus; start(): Promise; poll(isFirstPoll?: boolean): Promise; handleNotification(notification: any, owner: string, repo: string): Promise; private handleStarForkEvent; private handleWorkflowEvent; private dispatchGitHubEvent; handleEvent(event: any, owner: string, repo: string): Promise; handleWebhookEvent(event: any, owner: string, repo: string): Promise; }