UNPKG

@cmk/fe_utils

Version:
12 lines (10 loc) 437 B
import { NavContainerComponentPropertys } from '../../componentProperty'; import { PropsWithChildren } from 'react'; export type NavContainerWrapperProps = { items: { value: string; childId: string; }[]; navigationElementId: string; }; export declare const NavContainerWrapper: (props: PropsWithChildren<NavContainerWrapperProps & NavContainerComponentPropertys>) => import("react/jsx-runtime").JSX.Element;