import { CreditCardStateEnum } from './CreditCardStateEnum';
import { IconData } from './IconData';
/** Credit card information */
export interface CreditCard {
    /** This credit card is the default payment mean? */
    defaultPaymentMean: boolean;
    /** Custom description of this credit card */
    description?: string;
    /**  */
    expirationDate: string;
    /** Payment method type icon */
    icon?: IconData;
    /**  */
    id: number;
    /** Credit card BIN */
    number: string;
    /** Credit card state */
    state: CreditCardStateEnum;
    /** True if this credit card has been registered with a successful 3DSecure challenge */
    threeDsValidated: boolean;
    /** Kind of credit card */
    type: string;
}
//# sourceMappingURL=CreditCard.d.ts.map