import { CardAuthenticationResponse } from "./CardAuthenticationResponse";
import { CardAuthenticationVersion } from "./CardAuthenticationVersion";
declare class CardholderAuthenticationCreate {
    /**
    * The authentication identifier as assigned by authentication system (e.g. XID or DSTransactionID).
    */
    'authenticationIdentifier'?: string;
    /**
    *
    */
    'authenticationResponse': CardAuthenticationResponse;
    /**
    * The cardholder authentication value. Also known as Cardholder Authentication Verification Value (CAVV).
    */
    'authenticationValue'?: string;
    /**
    * The Electronic Commerce Indicator (ECI) value. The ECI is returned by authentication system and indicates the outcome/status of authentication.
    */
    'electronicCommerceIndicator'?: string;
    /**
    *
    */
    'version': CardAuthenticationVersion;
    static discriminator: string | undefined;
    static attributeTypeMap: Array<{
        name: string;
        baseName: string;
        type: string;
    }>;
    static getAttributeTypeMap(): {
        name: string;
        baseName: string;
        type: string;
    }[];
}
export { CardholderAuthenticationCreate };
