import React from 'react'; declare type NavProps = { onClick?: () => void; children?: React.ReactNode; logo?: React.ReactNode; bottom?: React.ReactNode; className?: string; }; export declare const NavItem: React.ForwardRefExoticComponent & { selected?: boolean | undefined; onClick?: ((itemKey?: string | undefined) => void) | undefined; itemKey?: string | undefined; action?: "remove" | "insert" | undefined; onMouseEnter?: (() => void) | undefined; onMouseLeave?: (() => void) | undefined; type?: "default" | "action" | undefined; size?: import("../types").Size | undefined; } & React.RefAttributes>; export declare const LayoutNav: (props: NavProps) => JSX.Element; export {};