import Vue from "vue"; import { IWebComponentInstance } from "../.."; import { ILetterAvatar } from "./ILetterAvatar"; export declare class LetterAvatar extends Vue implements IWebComponentInstance, ILetterAvatar { name: string; size: number; color: string; rounded?: boolean; private initals; private backGroundColor; static colors: string[]; private dataURI; onNameUpdate(): void; setBackgroundColor(): void; mounted(): void; getImageDataURI(): void; getInitials(input: string): string; getInitial(word: string): string; startWithAlphanumeric(input: string): boolean; render(): VueTsxSupport.JSX.Element; }