import { default as React } from 'react'; export type AvatarSize = 'sm' | 'md' | 'lg'; export type AvatarType = 'image' | 'video'; type AvatarProps = { type?: AvatarType; className?: string; size: AvatarSize; src?: string; alt?: string; name: string; fallbackText?: string; fallback?: React.ReactNode; }; export declare const Avatar: React.FC; export {};