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;
