import type { ComponentType, SVGAttributes } from 'react' 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: ComponentType> export declare const AvatarMarble: ComponentType> export declare const AvatarBauhaus: ComponentType> export declare const AvatarBeam: ComponentType> export declare const AvatarPixel: ComponentType> export declare const AvatarRing: ComponentType> export declare const AvatarSunset: ComponentType>