import { MenuLinkProps } from './menu-link'; export type NavSectionLinks = { name: string; testId?: string; selected?: boolean; } & Omit; export interface NavSection { title?: string; titleIcon?: string; floatBottom?: boolean; links: NavSectionLinks[]; } export interface NavProps extends React.HTMLAttributes { navTitle?: string; navSections: NavSection[]; className?: string; } export declare const Nav: ({ navTitle, navSections, className, ...props }: NavProps) => import("react").JSX.Element; //# sourceMappingURL=nav.d.ts.map