import React from 'react'; import { OAuthConfig } from './types'; interface OAuthButtonsProps { oauth?: OAuthConfig; onOAuthLogin?: (provider: 'google' | 'facebook' | 'apple') => Promise | void; } /** * 共享的三方登录按钮组件 */ declare const OAuthButtons: React.FC; export default OAuthButtons;