export interface HostCredential { readonly token: string; readonly source: string; } export interface HostCredentialDeps { readonly env?: Record | undefined; readonly readCliToken?: (() => Promise) | undefined; } export declare function isGithubHost(serverUrl: string): boolean; export declare function findGithubCredential(serverUrl: string, deps?: HostCredentialDeps): Promise; export declare function githubCredentialHint(): string;