import React from 'react';
import { DraggableProvided } from 'react-beautiful-dnd';
import DataSet from '../data-set';
declare type QuoteItemProps = {
    quote: any;
    command?: any;
    renderCommand?: any;
    isDragging: boolean;
    provided: DraggableProvided;
    isClone?: boolean;
    isGroupedOver?: boolean;
    style?: Object;
    index?: number;
    commandsLimit?: number;
    prefixCls: string;
    viewProps?: any;
    dataSet?: DataSet;
    displayFields?: any;
    onResize?: Function;
};
declare const _default: React.FunctionComponent<QuoteItemProps>;
export default _default;
