import { FC } from "react";
import { AvatarProps } from "../Avatar";
export interface ImageAvatarProps extends AvatarProps {
    src?: string;
    alt?: string;
}
export declare const ImageAvatar: FC<ImageAvatarProps>;
