/**
 * Aggreate to indicate whether position information is requested as part of the statement
 * @see "Section 13.9.1.2, OFX Spec"
 */
export declare class IncludePosition {
    private sentDownDate;
    private includePositions;
    constructor();
    /**
     * Gets the date that the position should be sent down for. This is an optional field according
     * to the OFX spec.
     *
     * @return the date for the position
     */
    getDateSentDown(): Date;
    /**
     * Sets the date that the position should be sent down for. This is an optional field according
     * to the OFX spec.
     *
     * @param sentDownDate the date for the position
     */
    setDateSentDown(sentDownDate: Date): void;
    /**
     * Gets whether to include positions in the statement download.
     *
     * @return whether to include positions in the statement download
     */
    getIncludePositions(): boolean;
    /**
     * Sets whether to include positions in the statement download.
     *
     * @param includePositions whether to include positions in the statement download
     */
    setIncludePositions(includePositions: boolean): void;
}
