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<AbstractMessageSetInfo>;
    /**
     * The list of information for each message set.
     *
     * @param informationList The list of information for each message set.
     */
    setInformationList(informationList: Array<AbstractMessageSetInfo>): void;
}
