import { default as React } from 'react'; import { ChainType } from '@bnb-chain/canonical-bridge-sdk'; export interface ProfileProps { walletIcons?: Array<{ walletType: ChainType; icon: React.ReactNode; }>; } export declare const Profile: (props: ProfileProps) => import("react/jsx-runtime").JSX.Element;