import { SocialItemProps, WalletItemProps } from '../type'; interface IProps { socialOptions?: SocialItemProps[]; walletOptions?: WalletItemProps[]; onClickInputArrow?: (email: string) => void; onClickMainButton: (email: string) => void; onClickSocialItem?: (socialItem: SocialItemProps, index: number) => void; onClickWalletItem?: (wallet: WalletItemProps, index: number) => void; defaultSelect?: string; show?: boolean; showEmail?: boolean; connected?: boolean; loadingIconKey?: string; btnStyle?: { textColor?: string; bgColor?: string; }; socialsFirst?: boolean; } declare const ConnectMain: ({ socialOptions, walletOptions, onClickInputArrow, onClickMainButton, onClickSocialItem, onClickWalletItem, show, showEmail, connected, loadingIconKey, btnStyle, socialsFirst, }: IProps) => import("react/jsx-runtime").JSX.Element; export default ConnectMain;