import React from 'react'; import { ItemProps } from './dropdown.type'; declare class Item extends React.PureComponent { static defaultProps: { data: {}; renderItem: string; }; constructor(props: ItemProps); handleClick(e: React.MouseEvent): void; render(): import("react/jsx-runtime").JSX.Element; } export default Item; //# sourceMappingURL=Item.d.ts.map