import { PropsWithChildren } from 'react'; import { MemberCardProps, MemberCardExplorerLinkProps, MemberCardItemProps, MemberCardCopyAddressProps } from './MemberCard.types'; export declare const MemberCard: ({ align, size, variant, profile, fullWidth, profileButtonColor, dropdownColor, children, }: PropsWithChildren) => JSX.Element; export declare const MemberCardExplorerLink: ({ explorerNetworkId, profileAddress, children, }: PropsWithChildren) => JSX.Element; export declare const MemberCardCopyAddress: ({ profileAddress, children, ...props }: PropsWithChildren) => JSX.Element; export declare const MemberCardItem: ({ children, ...props }: PropsWithChildren) => JSX.Element;