import { ReactElement } from 'react';
type LabelPosition = "left" | "right" | "bottom-left" | "bottom-center" | "bottom-right";
type AvatarWithLabelProps = React.HTMLAttributes<HTMLDivElement> & {
    name?: string;
    identity?: string;
    icon?: ReactElement;
    color?: string;
    bgColor?: string;
    sizeProp?: "sm" | "md" | "lg" | "xl" | number;
    src?: string;
    alt?: string;
    labelPositionProp?: LabelPosition;
    id?: string;
};
declare const AvatarWithLabel: React.FC<AvatarWithLabelProps>;
export default AvatarWithLabel;
