import { Theme } from './const'; import { SocialItemProps, WalletItemProps } from './type'; export interface PropsType { opened: boolean; title: string; close?: boolean; back?: boolean; isLoading?: boolean; theme?: Theme; connected?: boolean; socialOptions?: SocialItemProps[]; walletOptions?: WalletItemProps[]; onClickInputArrow?: (email: string) => void; onClickMainButton: (email: string) => void; onClickSocialItem?: (socialItem: SocialItemProps, index: number) => void; onClickWalletItem?: (wallet: WalletItemProps, index: number) => void; onClose: (fn?: () => void) => void; onBack?: () => void; socialsFirst?: boolean; } declare const ConnectModal: ({ opened, title, close, back, theme, isLoading, connected, socialOptions, walletOptions, onClose, onBack, onClickInputArrow, onClickMainButton, onClickSocialItem, onClickWalletItem, socialsFirst, }: PropsType) => import("react/jsx-runtime").JSX.Element; export default ConnectModal;