export declare class FinancialInstitutionInfo { private id; private organization; /** * Financial institution id. * * @return Financial institution id. */ getId(): string; /** * Financial institution id. * * @param id Financial institution id. */ setId(id: string): void; /** * The organization. * * @return The organization. */ getOrganization(): string; /** * The organization. * * @param organization The organization. */ setOrganization(organization: string): void; }