import { Component, JSX } from "solid-js"; import "./base.css"; import "./avatar.css"; export declare type AvatarProps = { img?: string; name?: string; fallback?: JSX.Element; plus?: number; } & JSX.HTMLAttributes; export declare const getInitials: (name: string) => string; export declare const Avatar: Component; export declare type AvatarBadgeProps = { borderColor?: string; background?: string; } & JSX.HTMLAttributes; export declare const AvatarBadge: Component; export declare type AvatarGroupProps = JSX.HTMLAttributes & { "data-plus"?: string; }; export declare const AvatarGroup: Component;