import * as React from 'react'; import { CurrencyType } from 'types'; export interface ListIdentityCardProps { displayName: string; imgSrc?: string; identitiesCount: number; savedAmount: string; onSaveClick?: () => void; isSaved?: boolean; currency?: CurrencyType; } export declare const ListIdentityCard: React.FC;