import { ResponseMessageSet } from "../ResponseMessageSet";
import { SecurityListResponseTransaction } from "./SecurityListResponseTransaction";
import { SecurityList } from "./SecurityList";
import { MessageSetType } from "../MessageSetType";
import { ResponseMessage } from "../ResponseMessage";
export declare class SecurityListResponseMessageSet extends ResponseMessageSet {
    private securityListResponse;
    private securityList;
    getType(): MessageSetType;
    /**
     * The security list response list transaction.
     *
     * Most OFX files have a single security response.
     *
     * @return The security list response list.
     */
    getSecurityListResponse(): SecurityListResponseTransaction;
    /**
     * The security list response.
     *
     * @param securityListResponse The security list response.
     */
    setSecurityListResponse(securityListResponse: SecurityListResponseTransaction): void;
    getSecurityList(): SecurityList;
    setSecurityList(securityList: SecurityList): void;
    getResponseMessages(): Array<ResponseMessage>;
}
