import { RequestMessageSet } from "../RequestMessageSet";
import { ProfileRequestTransaction } from "./ProfileRequestTransaction";
import { MessageSetType } from "../MessageSetType";
import { RequestMessage } from "../RequestMessage";
/**
 * @see "Section 7 OFX Spec"
 */
export declare class ProfileRequestMessageSet extends RequestMessageSet {
    private profileRequest;
    getType(): MessageSetType;
    /**
     * The profile request.
     *
     * @return The profile request.
     */
    getProfileRequest(): ProfileRequestTransaction;
    /**
     * The profile request.
     *
     * @param profileRequest The profile request.
     */
    setProfileRequest(profileRequest: ProfileRequestTransaction): void;
    getRequestMessages(): Array<RequestMessage>;
}
