import type { LitElement } from 'lit' type Constructor = new (...args: any[]) => T export interface AvatarBaseProps { name?: string colors?: string[] title?: boolean square?: boolean size?: number | string } export interface AvatarProps extends AvatarBaseProps { variant?: 'marble' | 'bauhaus' | 'beam' | 'pixel' | 'ring' | 'sunset' } export declare const Avatar: Constructor export declare const AvatarMarble: Constructor export declare const AvatarBauhaus: Constructor export declare const AvatarBeam: Constructor export declare const AvatarPixel: Constructor export declare const AvatarRing: Constructor export declare const AvatarSunset: Constructor