import type { FC, SVGProps } from 'react'; interface VisaLogoProperties extends SVGProps { /** aria-label */ 'aria-label'?: string; /** CSS Class Name */ className?: string; } declare const VisaLogo: FC; export default VisaLogo;