import RequestBehaviour from '../base/RequestBehaviour'; import Card from '../models/Card'; import Billing from '../models/Billing'; export default class CardTokenization extends RequestBehaviour { number?: string | null; cvv2?: string | null; expire_month?: string | null; expire_year?: string | null; cardholder?: string | null; address?: string | null; country?: string | null; state?: string | null; city?: string | null; zip?: string | null; phone?: string | null; email?: string | null; setCard(card: Card): void; setBilling(billing: Billing): void; isEncryptable(): boolean; withEncryption(publicKey?: string | null): string; }