export interface ProxyHandle { url: string; port: number; close: () => void; } /** * Read the gh CLI's stored token. Returns null when gh isn't installed * or the user hasn't run `gh auth login` — caller falls back to the * old PAT-prompt path. */ export declare function readGhToken(): string | null; export declare function startGhProxy(token: string, preferredPort?: number): Promise; //# sourceMappingURL=gh-proxy.d.ts.map