import { type DropdownMenuItemProps } from './DropdownMenuItem.types'; /** * The DropdownMenuItem component. * It is used inside the DropdownMenu component. * If the href or onClick prop is provided, the menu item will be focusable. * Otherwise, it will be a div element and not focusable. * * If the href prop is provided, the menu item will be rendered as an anchor element. * Also the target and customLinkComponent props can be used. * * If the href prop is undefined and onClick prop is provided, the menu item will be rendered as a button element. * * Otherwise, it will be rendered as a div element. */ export declare function DropdownMenuItem({ children, className, href, target, customLinkComponent, onClick, disabled, 'aria-labelledby': ariaLabelledby, ...rest }: DropdownMenuItemProps): import("react/jsx-runtime").JSX.Element;