import type { IconColor } from '../Icon/Icon'; export type AvatarSize = 'md' | 'sm' | 'xs'; export declare class Avatar { /** Canonical IcoMo icon name displayed inside the avatar. */ icon: string; /** Semantic icon hierarchy. Use primary for stronger emphasis; secondary is the default. */ iconColor: IconColor; /** Circle and icon density. Maps to 32/20, 24/16, or 16/12 px. */ size: AvatarSize; /** Optional accessible label. Omit when the surrounding content already conveys the meaning. */ label: string | undefined; render(): any; } //# sourceMappingURL=Avatar.d.ts.map