import * as React from 'react'; import {IconType, TemplateType} from "../utils"; export interface ChipProps { label?: string; icon?: IconType; image?: string; removable?: boolean; removeIcon?: string; className?: string; style?: object; template?: TemplateType; imageAlt?: string; onImageError?(event: React.SyntheticEvent): void; onRemove?(event: React.MouseEvent): void; } export declare class Chip extends React.Component { }