export interface AvatarProperties { type?: 'square' | 'rounded' | 'circle'; secondary?: boolean; outline?: boolean; src?: string; size?: 'small' | 'medium' | 'large'; alt?: string; } export declare const Avatar: import("@dojo/framework/core/interfaces").DefaultChildrenWNodeFactory<{ properties: AvatarProperties & import("@dojo/framework/core/interfaces").WidgetProperties & { variant?: "default" | "inherit" | undefined; } & import("@dojo/framework/core/middleware/theme").ThemeProperties; children: import("@dojo/framework/core/interfaces").DNode[]; }>; export default Avatar;