export default cardData;
declare const cardData: {
    productCode: string;
    productName: string;
    displayName: string;
    cardDesign: {
        name: string;
        cardStyle: string;
        bankLogo: any;
        visa: any;
        mastercard: import("./Types").Mastercard;
        bankAxept: import("./Types").BankAxept;
        saga: import("./Types").Saga;
        privateBanking: import("./Types").PB;
    };
    productType: ProductType;
    cardType: CardType;
    bankAxept: BankAxeptType;
}[];
import { ProductType } from './Types';
import { CardType } from './Types';
import { BankAxeptType } from './Types';
