import * as React from 'react'; export interface NavigationProps extends React.HTMLAttributes { /** Children (NavBrand, NavLinks) */ children: React.ReactNode; } export interface NavBrandProps extends React.HTMLAttributes { /** Brand content (logo, text) */ children: React.ReactNode; } export interface NavLinksProps extends React.HTMLAttributes { /** NavLink children */ children: React.ReactNode; } export interface NavLinkProps extends React.AnchorHTMLAttributes { /** Link content */ children: React.ReactNode; /** Active state */ active?: boolean; /** Click handler for SPA navigation */ onClick?: (e: React.MouseEvent) => void; } /** * Navigation - App navigation bar * * Horizontal navigation bar with brand and links. * Use for main app navigation with clean, minimal design. */ export declare const Navigation: React.ForwardRefExoticComponent>; /** * NavBrand - Navigation brand/logo section */ export declare const NavBrand: React.ForwardRefExoticComponent>; /** * NavLinks - Navigation links container */ export declare const NavLinks: React.ForwardRefExoticComponent>; /** * NavLink - Individual navigation link */ export declare const NavLink: React.ForwardRefExoticComponent>; //# sourceMappingURL=Navigation.d.ts.map