import * as React from "react"; import { IconProps } from "../IconBase"; import { ViewProps } from "../View"; export type ScaleSizeType = 1 | 2 | 3; export interface AvatarProps extends ViewProps { fullName?: string; scaleSize?: ScaleSizeType; src?: string; icon?: React.ComponentType; skeleton?: boolean; } /** * A component that displays an avatar. */ declare const Avatar: React.SFC; export default Avatar;