import * as React from 'react'; import type { MenuProps } from "../Menu/index.js"; import type { PopupProps } from "../Popup/index.js"; import type { DropdownMenuListItem, DropdownMenuSize } from "./types.js"; export type DropdownMenuPopupProps = { items: DropdownMenuListItem[]; open: boolean; anchorRef: React.RefObject; onClose?: () => void; size?: DropdownMenuSize; menuProps?: MenuProps; children?: React.ReactNode; popupProps?: Partial; path?: number[]; }; export declare const DropdownMenuPopup: ({ items, open, anchorRef, onClose, size, menuProps, children, popupProps, path, }: DropdownMenuPopupProps) => import("react/jsx-runtime").JSX.Element;