import type { FunctionComponent } from "react"; import { type AvatarProps } from "./avatar"; import AvatarGroup from "./avatar-group"; export type { AvatarThemeVars } from "./avatar.shared"; interface AvatarInterface extends FunctionComponent { Group: typeof AvatarGroup; } declare const Avatar: AvatarInterface; export default Avatar;