import type { PropsWithChildren } from "react"; import type { AvatarSizes } from "./Avatar"; export type AvatarAddProps = PropsWithChildren<{ icon?: string; size?: keyof AvatarSizes; bg?: string; iconColor?: string; ringColor?: string; }>; export declare const AvatarAdd: React.FC;