import * as React from 'react';
export default class Item extends React.Component<any, any> {
    dbClickLock: boolean;
    shouldComponentUpdate(...args: any[]): any;
    render(): JSX.Element;
    onClick: (e: any, item: any) => void;
    onHover: () => void;
}
