import type { FunctionComponent } from 'react'; type Size = 'small' | 'medium' | 'large'; interface Props { className?: string; name?: string; size: Size; square?: boolean; src?: string; } export declare const Avatar: FunctionComponent; export {};