UNPKG

@dnb/eufemia

Version:

DNB Eufemia Design System UI Library

12 lines (11 loc) 637 B
import type { ValueStringProps as StringValueProps } from '../String'; import { type BankAccountType } from '../../../../components/number-format/utils/formatBankAccountNumber'; export type { BankAccountType } from '../../../../components/number-format/utils/formatBankAccountNumber'; export type ValueBankAccountNumberProps = StringValueProps & { /** * The type of bank account number for formatting. Defaults to `norwegianBban`. */ bankAccountType?: BankAccountType; }; declare function BankAccountNumber(props: ValueBankAccountNumberProps): import("react/jsx-runtime").JSX.Element; export default BankAccountNumber;