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;
