/**
 *
 * @export
 * @interface CardCryptogram
 */
export interface CardCryptogram {
    /**
     * The Electronic Commerce Indicator (ECI) represents the authentication level and indicates liability shift during online or card-not-present transactions.
     * @type {string}
     * @memberof CardCryptogram
     */
    readonly eci?: string;
    /**
     * The cryptogram value used for securing card transactions, format varying based on the PAN type.
     * @type {string}
     * @memberof CardCryptogram
     */
    readonly value?: string;
}
/**
 * Check if a given object implements the CardCryptogram interface.
 */
export declare function instanceOfCardCryptogram(value: object): value is CardCryptogram;
export declare function CardCryptogramFromJSON(json: any): CardCryptogram;
export declare function CardCryptogramFromJSONTyped(json: any, ignoreDiscriminator: boolean): CardCryptogram;
export declare function CardCryptogramToJSON(json: any): CardCryptogram;
export declare function CardCryptogramToJSONTyped(value?: Omit<CardCryptogram, 'eci' | 'value'> | null, ignoreDiscriminator?: boolean): any;
