import React from 'react'; import { AppTypeEnum } from '../../context'; import { LoginEventDataType, MainKeysType, UserAccountType } from './hooks/useLogin'; declare type IProps = { containerId: string; isShow?: boolean; appType?: AppTypeEnum; loginBtnNode?: React.ReactNode; account?: UserAccountType; styles?: Record; modalClassName?: string; handleLoginEvent: (eventData: LoginEventDataType) => void; keys?: MainKeysType; }; export declare const LoginModal: React.FC; export {};