import { default as React } from 'react'; export interface TruncatedAccountProps { /** Name of account */ name: string; /** Last four digits of account number */ lastFour?: string | number; /** Optional value for `data-testid` attribute */ testId?: string; /** When `true`, the TruncatedAccount root element will display inline instead of block */ isInline?: boolean; } /** * Auto-truncated display of account name and account last four digits. * This component will grow to the width of its parent container. * The account name will truncate with ellipsis as needed to fit the space. */ declare const TruncatedAccount: ({ name, lastFour, isInline, }: TruncatedAccountProps) => React.JSX.Element; export default TruncatedAccount; //# sourceMappingURL=index.d.ts.map