export interface UseOAuthPopupOptions { onComplete: () => void; onError?: (error: string) => void; } /** * Hook to manage OAuth popup window with proper cleanup * Handles window.postMessage communication and fallback polling */ export declare function useOAuthPopup({ onComplete, onError }: UseOAuthPopupOptions): { openOAuthPopup: (authorizationUrl: string) => void; }; //# sourceMappingURL=useOAuthPopup.d.ts.map