export interface AuthResult { token: string; apiUrl?: string; tenantCode?: string; projectCode?: string; } export declare function startAuthServer(port?: number, allowedOrigin?: string): Promise<{ url: string; nonce: string; waitForCallback: () => Promise; stop: () => void; }>; //# sourceMappingURL=auth-server.d.ts.map