import * as React from 'react'; import { Option } from '../../types'; export interface Props { className?: string; name?: string; children: React.ReactNode | string; object: T; onRemove: (arg: T) => void; value: string | number; } declare const Token: (props: Props) => JSX.Element; export default Token;