import React from 'react';
interface BadgeProps {
    icon: string;
    title: string;
    description: string;
    position?: 'top-left' | 'top-right' | 'bottom-left' | 'bottom-right';
}
declare const Badge: React.FC<BadgeProps>;
export default Badge;
