import { Iban } from "./Iban"; export interface Scan { type: "scan"; sort: string; account: string; holder: string; institution?: string; } export declare namespace Scan { const currencies: readonly ["GBP"]; function fromIban(iban: Iban): Scan; const type: import("isly/dist/cjs/object").IslyObject; }