import React, { CSSProperties } from 'react';
export interface ItemProps {
    prefixCls?: string;
    className?: string;
    style?: CSSProperties;
    key?: string;
    children?: any;
    onClick?: (key: string) => void;
}
declare const Item: React.ForwardRefExoticComponent<ItemProps & React.RefAttributes<HTMLDivElement>>;
export default Item;
