/** * @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 { value: string; } export declare const normalizeIBAN: (iban: string) => string; export declare const formatIBAN: (normalizedIBAN: string) => string; export declare const IBANData: import("react").ForwardRefExoticComponent>; //# sourceMappingURL=IBANData.d.ts.map