import { default as React } from 'react'; import { SafeOmit } from '../../.deps/utils/src'; import { IconName } from '../Icon/IconName'; export interface NestedNavigationItemOwnProps { /** The row's label. */ label: string; /** Optional leading icon. */ icon?: IconName; /** Drills into the `NestedNavigation.Level` with this id. */ to: string; disabled?: boolean; } export interface NestedNavigationItemInheritedDivProps extends SafeOmit, 'children' | 'className' | 'onClick' | 'onSelect'> { } export interface NestedNavigationItemProps extends NestedNavigationItemOwnProps, NestedNavigationItemInheritedDivProps { } export declare const NestedNavigationItem: React.ForwardRefExoticComponent>;