import { AvatarProps, MenuListProps, MenuProps } from '@chakra-ui/react'; /** * MenuDivider styled for avatar * @preconditions Must be a child of Menu component, */ export declare const AvatarMenuDivider: () => JSX.Element; export interface AvatarMenuProps extends Pick, AvatarProps { hasNotification?: boolean; menuListProps?: Omit; /** Badge to render when there are notifications. Defaults to AvatarBadge component. */ badge?: JSX.Element; children: MenuListProps['children']; } export declare const AvatarMenu: ({ name, hasNotification, defaultIsOpen, menuListProps, children, badge, sx, ...avatarProps }: AvatarMenuProps) => JSX.Element;