import type { AnchorHTMLAttributes, ComponentType, FC, ReactNode, Ref } from 'react'; import type { SvgIconProps } from '../../icons/SvgIcon'; export interface NavPanelItemProps extends AnchorHTMLAttributes { ref?: Ref; asChild?: boolean; icon?: ComponentType; active?: boolean; children: ReactNode; } export declare const NavPanelItem: FC;