import { StyleFunctionProps } from '@chakra-ui/theme-tools'; export declare const AvatarMenu: { baseStyle?: (({ theme }: StyleFunctionProps) => { button: { px: string; bg: string; color: string; _hover: { bg: string; }; _active: { bg: string; }; _focusVisible: { outline: string; }; }; avatar: { transitionProperty: string; transitionDuration: string; _groupFocus: any; _groupActive: any; }; }) | undefined; sizes?: { md: { list: { mt: string; }; }; } | undefined; variants?: { subtle: (props: StyleFunctionProps) => { avatar: { _groupActive: { bg: string; }; _groupHover: { bg: string; }; }; }; solid: (props: StyleFunctionProps) => { avatar: { _groupActive: { bg: string; }; _groupHover: { bg: string; }; }; }; } | undefined; defaultProps?: { size?: "md" | undefined; variant?: "solid" | "subtle" | undefined; colorScheme?: string | undefined; } | undefined; parts: ("button" | "list" | "avatar")[]; };