import { AbstractMessageSetInfo } from "./AbstractMessageSetInfo"; /** * @see "Section 7.2, OFX Spec" */ export declare class MessageSetInfoList { private informationList; /** * The list of information for each message set. * * @return The list of information for each message set. */ getInformationList(): Array; /** * The list of information for each message set. * * @param informationList The list of information for each message set. */ setInformationList(informationList: Array): void; }