import { VersionSpecificMessageSetInfo } from "../VersionSpecificMessageSetInfo";
import { ImageProfile } from "./common/ImageProfile";
import { MessageSetType } from "../../MessageSetType";
/**
 * Credit Card Message Set Profile
 * @see "Section 11.13.3 OFX Spec"
 */
export declare class CreditCardV1MessageSetInfo extends VersionSpecificMessageSetInfo {
    private closingAvail;
    private imageProfile;
    getMessageSetType(): MessageSetType;
    /**
     * Closing statement information available
     * @return Boolean
     */
    getClosingAvail(): boolean;
    setClosingAvail(closingAvail: boolean): void;
    /**
     * Image profile (if supported)
     * @return ImageProfile
     */
    getImageProfile(): ImageProfile;
    setImageProfile(imageProfile: ImageProfile): void;
}
