import { default as React, ComponentProps, ReactNode } from 'react'; import * as DropdownMenuPrimitives from '@radix-ui/react-dropdown-menu'; export declare const DropdownMenuItem: React.ForwardRefExoticComponent>; type DropdownMenuProps = { /** Content of the dropdown menu */ children: React.ReactNode; isOpen?: boolean; /** Callback for when the dropdown should close */ onClose?: () => void; /** The element that triggers the dropdown menu */ trigger: ReactNode; 'aria-label'?: string; className?: string; } & ComponentProps; export declare const DropdownMenu: ({ isOpen, onClose, trigger, sideOffset, side, children, align, "aria-label": ariaLabel, className, }: DropdownMenuProps) => import("react/jsx-runtime").JSX.Element; export {}; //# sourceMappingURL=DropdownMenu.d.ts.map