import type { AvatarProps as MuiAvatarProps } from '@mui/material/Avatar'; import type { SxProps, Theme } from '@mui/material/styles'; export type AvatarSize = 'xs' | 'sm' | 'md' | 'lg' | 'xl'; export interface AvatarProps extends Omit { /** Preset size token */ size?: AvatarSize; /** Shape variant */ shape?: 'circular' | 'rounded' | 'square'; /** MUI sx style overrides */ sx?: SxProps; }