import { Shape, Size } from '../types'; export declare class Avatar { name?: string; size?: Size; shape?: Shape; src?: string; error: boolean; render(): any; private generateInitials; }