import type { OAuthCredentials, OAuthLoginCallbacks } from "./oauth/types"; export declare const githubCopilotProvider: { readonly id: "github-copilot"; readonly name: "GitHub Copilot"; readonly login: (cb: OAuthLoginCallbacks) => Promise; readonly refreshToken: (credentials: OAuthCredentials) => Promise; };