import { AvatarGroupItemType, AvatarGroupProps, AvatarProps } from "./type.mjs";
import AvatarGroup from "./AvatarGroup/index.mjs";
import { ReactNode, RefAttributes } from "react";
//#region src/Avatar/index.d.ts
interface IAvatar {
  (props: AvatarProps & RefAttributes<HTMLDivElement>): ReactNode;
  Group: typeof AvatarGroup;
}
declare const Avatar: IAvatar;
//#endregion
export { AvatarGroup, type AvatarGroupItemType, type AvatarGroupProps, type AvatarProps, Avatar as default };
//# sourceMappingURL=index.d.mts.map