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