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