import React from 'react'; type BadgeProps = { label: string; variant: 'info' | 'success' | 'warning' | 'error'; }; export declare const Badge: React.FC; export {};