import { StatusIcon } from './status';
import type { DNB as DNBType, ProductType, BankAxeptType, CardType } from '../utils/Types';
import type { CardDesign } from '../utils/CardDesigns';
declare const BankLogo: ({ logoType }: {
    logoType: DNBType;
}) => import("react/jsx-runtime").JSX.Element;
declare const ProductLogo: ({ productType, cardDesign, }: {
    productType: ProductType;
    cardDesign: CardDesign;
}) => import("react/jsx-runtime").JSX.Element;
declare const BankAxeptLogo: ({ bankAxept, cardDesign, }: {
    bankAxept: BankAxeptType;
    cardDesign: CardDesign;
}) => import("react/jsx-runtime").JSX.Element;
declare const TypeLogo: ({ cardType, cardDesign, }: {
    cardType: CardType;
    cardDesign: CardDesign;
}) => import("react/jsx-runtime").JSX.Element;
export { BankLogo, ProductLogo, StatusIcon, TypeLogo, BankAxeptLogo };
