import * as React from 'react'; import { ProviderType } from '@dcl/schemas/dist/dapps/provider-type'; import { LoginModalI18N, LoginModalOptionI18N, LoginModalOptionType } from 'decentraland-ui/dist/components/LoginModal/LoginModal'; import { DefaultProps, Props, State } from './LoginModal.types'; export default class LoginModal extends React.PureComponent { static defaultProps: DefaultProps; constructor(props: Props); componentDidUpdate(prevProps: Props): void; handleOnConnect: (loginType: LoginModalOptionType) => void; getModalTranslations: () => LoginModalI18N | undefined; getOptionTranslations: () => LoginModalOptionI18N | undefined; renderLoginModalOption: (providerType: ProviderType) => import("react/jsx-runtime").JSX.Element | null; render(): import("react/jsx-runtime").JSX.Element; }