type NumericAvatarSize = 24 | 40 | 48 | 56 | 72; type LegacyAvatarSize = 'sm' | 'md' | 'lg'; export type AvatarSize = NumericAvatarSize | LegacyAvatarSize; export type AvatarTheme = 'light' | 'dark'; export type AvatarType = 'thumbnail' | 'icon' | 'emoji' | 'initials'; /** * @deprecated `Avatar` is deprecated please use `AvatarView` instead */ export interface AvatarProps { backgroundColor?: string; backgroundColorSeed?: string; children?: React.ReactNode; className?: string; /** @default false */ outlined?: boolean; /** @default 48 */ size?: AvatarSize; /** @default 'light' */ theme?: AvatarTheme; /** @default 'thumbnail' */ type?: AvatarType; 'aria-label'?: string; } /** * @deprecated Use `AvatarView` component instead */ declare const Avatar: React.FC; export default Avatar; //# sourceMappingURL=Avatar.d.ts.map