/** * Starts a local HTTP server to handle OAuth callback. * Tries ports in order: 49152, 49153, 49154 * Returns a promise that resolves with the actual port and a promise for the callback URL. */ export declare function startLocalServer(): Promise<{ port: number; urlPromise: Promise; }>;