import React from 'react'; interface OAuthModalProps { isOpen?: boolean; authUrl: string; onClose: () => void; onSuccess: () => void; description?: string; } declare const OAuthModal: React.FC; export type { OAuthModalProps }; export { OAuthModal };