export interface ICybersourcePayerAuthSetupPayload {
    billTo_city: string;
    billTo_country: string;
    billTo_email: string;
    billTo_firstName: string;
    billTo_lastName: string;
    billTo_postalCode: string;
    billTo_state: string;
    billTo_street1: string;
    card_accountNumber: string;
    card_cardType: string;
    card_expirationMonth: string;
    card_expirationYear: string;
    ics_applications: string;
    merchantID?: string;
    merchantReferenceCode: string;
    payerAuthSetupService_run: boolean;
}
export interface ICybersourcePayerAuthSetupResponse {
    payerAuthSetupReply_deviceDataCollectionURL: string;
    decision: string;
    payerAuthSetupReply_reasonCode: string;
    merchantReferenceCode: string;
    requestID: string;
    payerAuthSetupReply_accessToken: string;
    payerAuthSetupReply_referenceID: string;
    reasonCode: string;
    requestToken: string;
}
