import { BasePosition } from "./BasePosition"; /** * Aggregate for a list of invesment positions. * @see "Section 13.9.2.2, OFX Spec" */ export declare class InvestmentPositionList { private positions; /** * Gets the list of positions * * @return the list of positions */ getPositions(): Array; /** * Sets the list of positions. * * @param positions the list of positions */ setPositions(positions: Array): void; }