import type { Component, JSX } from 'solid-js' 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: Component> export declare const AvatarMarble: Component> export declare const AvatarBauhaus: Component> export declare const AvatarBeam: Component> export declare const AvatarPixel: Component> export declare const AvatarRing: Component> export declare const AvatarSunset: Component>