UNPKG

@sb1/ffe-account-selector-react

Version:

Selector for bank accounts with autocomplete.

11 lines (10 loc) 385 B
import React from 'react'; import { Account, Locale } from '../types'; interface AccountDetailsProps { account?: Account; showBalance: boolean; ariaInvalid: React.ComponentPropsWithoutRef<'div'>['aria-invalid']; locale: Locale; } export declare function AccountDetails({ account, showBalance, ariaInvalid, locale, }: AccountDetailsProps): React.JSX.Element; export {};