/** * Install-first browser authorization: device code + poll for scoped MCP API key. * Does not persist a Reconstruct account bearer token. */ export type InstallAuthorizationResult = { apiKey: string; organizationId: string; }; /** * Start browser install authorization and poll until the MCP API key is issued. */ export declare function authorizeInstallViaBrowser(options?: { keyName?: string; }): Promise; //# sourceMappingURL=install-auth.d.ts.map