/** * Props for val-avatar component. * * @property image - The image URL to display. * @property default - The fallback image URL if image is not provided. * @property size - The size of the avatar ('small' | 'medium' | 'large'). * @property box - Whether to display the avatar with a box style (optional). */ export interface AvatarMetadata { image: string; default: string; size: 'small' | 'medium' | 'large'; box?: boolean; grayscale?: boolean; }