UNPKG

@sb1/ffe-account-selector-react

Version:

Selector for bank accounts with autocomplete.

11 lines (10 loc) 358 B
import React from 'react'; import { Account, Locale } from '../types'; interface Props<Item extends Account> { item: Item; isHighlighted: boolean; showBalance: boolean; locale: Locale; } export declare function AccountActionBody<Item extends Account>({ item, isHighlighted, showBalance, locale, }: Props<Item>): React.JSX.Element; export {};