/**
 * @license EUPL-1.2
 * Copyright (c) 2020-2024 Frameless B.V.
 * Copyright (c) 2021-2024 Gemeente Utrecht
 */
import { HTMLAttributes } from 'react';
export interface IBANDataProps extends HTMLAttributes<HTMLDataElement> {
    value: string;
}
export declare const normalizeIBAN: (iban: string) => string;
export declare const formatIBAN: (normalizedIBAN: string) => string;
export declare const IBANData: import("react").ForwardRefExoticComponent<IBANDataProps & import("react").RefAttributes<HTMLDataElement>>;
//# sourceMappingURL=IBANData.d.ts.map