import * as React from "react"; import type { ClickAwayListenerProps, ListItemProps, PopperProps as MuiPopperProps } from "@mui/material"; export interface PopperItemProps extends Pick { children: React.ReactNode; component?: React.ElementType; componentProps?: any; onClick?: () => void; icon?: React.ReactElement; } declare const PopperItem: ({ children, componentProps, onClick, icon, ...props }: PopperItemProps) => JSX.Element; export interface PopperProps extends Pick, Pick { open: boolean; anchorRef?: React.MutableRefObject | null; children?: React.ReactElement | React.ReactElement[]; id?: string; } declare const Popper: ({ open, anchorRef, onClickAway, placement, children, id, }: PopperProps) => JSX.Element; export { Popper, PopperItem }; //# sourceMappingURL=popper.d.ts.map