import React, { HTMLAttributes } from 'react';
export interface ItemProps {
    /** 禁用 */
    disabled?: boolean;
    /** 标明当前路由 */
    current?: boolean;
    /** 标明节点无点击跳转事件 */
    noAction?: boolean;
    /** @ignore */
    href?: string;
}
declare const Item: {
    ({ disabled, onClick, href, ...rest }: ItemProps & HTMLAttributes<HTMLElement>): React.JSX.Element;
    __IS_BREADCRUMB_ITEM: boolean;
};
export default Item;
