export type NavLink = { /** The visible text for the navigation link */ label: string; /** The URL the link points to */ href: string; }; /** * Props for the Navigation component. */ export type NavigationProps = { /** The brand name displayed in the navigation banner */ brand: string; /** The list of navigation links to render */ links: NavLink[]; }; //# sourceMappingURL=types.d.ts.map