import React, { Component } from 'react'; interface TagForInputProps { children: React.ReactNode; rtl: boolean; tagName: string; tagBackGround: string; tagColor: string; } export default class TagForInput extends Component { render(): JSX.Element; } export {};