import React from 'react'; interface BaseTagProps { color: string; text: React.ReactNode; } declare const BaseTag: React.FC; export default BaseTag;