import type { IStatusPollingAdapter, StatusChange } from './IStatusPollingAdapter.js'; import type { TrackedPlan } from '../../types/index.js'; /** * Polls GitHub GraphQL API directly for Copilot status and deployment changes. * Used by free-tier users who don't have Hula Server access. */ export declare class GitHubDirectPollingAdapter implements IStatusPollingAdapter { readonly name = "github"; private copilotService; private deploymentService; private issueService; constructor(); validate(): void; pollForChanges(currentIssues: TrackedPlan[]): Promise; } //# sourceMappingURL=GitHubDirectPollingAdapter.d.ts.map