import React from 'react'; import { GlobalProps } from '../utilities/globalProps'; declare type FormPillProps = { className?: string; id?: string; text: string; name?: string; onClick?: React.MouseEventHandler; avatar?: boolean; avatarUrl?: string; size?: string; textTransform?: 'none' | 'lowercase'; closeProps?: { onClick?: React.MouseEventHandler; onMouseDown?: React.MouseEventHandler; onTouchEnd?: React.TouchEventHandler; }; } & GlobalProps; declare const FormPill: (props: FormPillProps) => JSX.Element; export default FormPill;