import React from 'react'; interface TagProps { label: any; onClose?: () => void; removable?: boolean; } export declare const Tag: React.FC; export {};