import { FC, PropsWithChildren } from "react"; interface NvDropdownContainerProps extends PropsWithChildren { /** Flag indicating whether the dropdown container should have a static position */ isStatic?: boolean; className?: string; } /** * Functional component for rendering a dropdown container. * Manages the visibility and position of the dropdown content based on the context provided by DropdownContext. * * @param {boolean} isStatic - Flag indicating whether the dropdown container should have a static position. * @param {ReactNode} children - The content to be displayed within the dropdown container. * @returns {JSX.Element} A JSX element representing the dropdown container with dynamic positioning. */ declare const NvDropdownContainer: FC; export default NvDropdownContainer;