import type { EventBus } from '../events/bus'; import type { EmitContext } from '../events/emit'; import type { GitHubError, PrIdent } from '../events/schema'; export declare function emitGitHubError(options: { bus?: EventBus; context: EmitContext; operation: GitHubError['operation']; error: unknown; pr?: PrIdent; details?: string; }): Promise;