/// export interface ListCardProps { displayName: string; imgSrc?: string; identitiesCount?: number; buttonWrapper?: (button: React.ReactElement) => React.ReactElement; className?: string; } declare const ListCard: React.FC; export { ListCard };