/// import { Size } from './styles'; declare type AvatarBaseProps = { size?: Size; badge?: boolean; }; interface AvatarNameProps extends AvatarBaseProps { name: string; src?: string; } interface AvatarImageProps extends AvatarBaseProps { name?: string; src: string; } declare type AvatarProps = AvatarNameProps | AvatarImageProps; export declare function Avatar({ name, src, size, badge, }: AvatarProps): JSX.Element; export {};