import * as React from 'react'; export interface ChipProps { label?: string; onDelete?: () => void; onClick?: () => void; minimal?: boolean; highlighted?: 'normal' | 'good' | 'warning' | 'drop'; className?: string; checked?: boolean; } export interface IDraggableChipProps extends ChipProps { id: string; chipType: string; dragSource: any; isDragging: boolean; setHovering: (id: string) => void; } export default function Chip(props: ChipProps): React.JSX.Element; declare function DraggableChip(props: IDraggableChipProps): any; export declare const DragChip: import("react-dnd").DndComponentClass>; export {};