import { HTMLAttributes, PropsWithChildren } from "react"; import { Variant } from "../../@types/Colors"; interface IAvatar extends PropsWithChildren> { isPlaceholder?: boolean; status?: "online" | "offline"; contentClasses?: string; variant?: Variant; } export declare const Avatar: import("react").ForwardRefExoticComponent>; export {};