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;
