import type { FC, SVGProps } from 'react';
export type VisaBadgeEllipseProperties = {
    /** CSS Class Name */
    className?: string;
    /** aria-label */
    'aria-label'?: string;
} & SVGProps<SVGSVGElement>;
declare const BadgeEllipse: FC<VisaBadgeEllipseProperties>;
export default BadgeEllipse;
