/// import { AvatarProps } from "@mui/material/Avatar"; export interface AvatarInterface extends AvatarProps { size?: number; id?: string; onEdit?: () => void; } declare const AvatarWithEdit: ({ size, onEdit, id, ...props }: AvatarInterface) => JSX.Element; export default AvatarWithEdit;