import React from 'react'; declare type Props = { 'data-qa'?: string; label: string; onClick?: () => void; icon?: string; size?: 'small' | 'medium' | 'large'; state?: 'static' | 'removable'; theme?: 'enabled' | 'active' | 'disabled' | 'negative' | 'positive'; onRemove?: Function; }; declare const Tag: React.FC; export default Tag;