/// interface Props { background?: string; fontColor?: string; title: string; left?: string; top?: string; } declare const Badge: ({ background, fontColor, title, top, left }: Props) => JSX.Element; export default Badge;