@dnb/eufemia
Version:
DNB Eufemia Design System UI Library
12 lines (11 loc) • 741 B
TypeScript
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, used for label and formatting. Can be `norwegianBban`, `swedishBban`, `swedishBankgiro`, `swedishPlusgiro`, or `iban`. Defaults to `norwegianBban`.
*/
bankAccountType?: BankAccountType;
};
declare function BankAccountNumber(props: ValueBankAccountNumberProps): import("react/jsx-runtime").JSX.Element;
export default BankAccountNumber;