/**
 *
 * @export
 * @interface CardCryptogramCreate
 */
export interface CardCryptogramCreate {
    /**
     * The Electronic Commerce Indicator (ECI) represents the authentication level and indicates liability shift during online or card-not-present transactions.
     * @type {string}
     * @memberof CardCryptogramCreate
     */
    eci?: string;
    /**
     * The cryptogram value used for securing card transactions, format varying based on the PAN type.
     * @type {string}
     * @memberof CardCryptogramCreate
     */
    value: string;
}
/**
 * Check if a given object implements the CardCryptogramCreate interface.
 */
export declare function instanceOfCardCryptogramCreate(value: object): value is CardCryptogramCreate;
export declare function CardCryptogramCreateFromJSON(json: any): CardCryptogramCreate;
export declare function CardCryptogramCreateFromJSONTyped(json: any, ignoreDiscriminator: boolean): CardCryptogramCreate;
export declare function CardCryptogramCreateToJSON(json: any): CardCryptogramCreate;
export declare function CardCryptogramCreateToJSONTyped(value?: CardCryptogramCreate | null, ignoreDiscriminator?: boolean): any;
