export interface Iban { type: "iban"; iban: string; holder: string; institution?: string; transactor?: string; } export declare namespace Iban { const currencies: readonly ["EUR", "GBP", "SEK", "USD"]; const type: import("isly/dist/cjs/object").IslyObject; }