export function BankLogo({ logoType }: {
    logoType: any;
}): any;
export function ProductLogo({ productType, cardDesign }: {
    productType: any;
    cardDesign: any;
}): any;
import { StatusIcon } from './status';
export function TypeLogo({ cardType, cardDesign }: {
    cardType: any;
    cardDesign: any;
}): any;
export function BankAxeptLogo({ bankAxept, cardDesign }: {
    bankAxept: any;
    cardDesign: any;
}): any;
export { StatusIcon };
