export type AvatarSize = 'xs' | 'sm' | 'md' | 'lg'; export type AvatarColor = 'pink' | 'purple' | 'green' | 'orange'; export type AvatarStatus = 'default' | 'done' | 'pending'; export interface AvatarProps { name: string; src?: string; size?: AvatarSize; color?: AvatarColor; status?: AvatarStatus; /** Renders a white ring around the avatar. Set by AvatarGroup on its children — avatars used standalone should not pass this. */ outline?: boolean; className?: string; } export declare function Avatar({ name, src, size, color, status, outline, className }: AvatarProps): import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=Avatar.d.ts.map