import React from 'react';
import noop from './utils/noop';
declare type Props = {
    text: string;
    icon?: React.ReactNode;
    itemKey: string;
    onClick: (e: any) => void;
    selectedKey?: string;
    level: number;
};
declare const Item: {
    (props: Props): JSX.Element;
    defaultProps: {
        onClick: typeof noop;
        icon: null;
        level: number;
    };
};
export default Item;
