import React, { ReactChild } from "react";
import { NavRoleType } from "../Nav";
export interface ItemProps {
    /** Classname prop for custom styling. */
    children: ReactChild | string;
    /** Active state(underline). */
    active?: boolean;
    /** Disabled state. */
    disabled?: boolean;
    className?: string;
    name: string;
    role?: NavRoleType;
}
export declare const Item: React.ForwardRefExoticComponent<ItemProps & Omit<React.DetailedHTMLProps<React.LiHTMLAttributes<HTMLLIElement>, HTMLLIElement>, "ref"> & React.RefAttributes<HTMLLIElement>>;
//# sourceMappingURL=Item.d.ts.map