/// <reference types="react" />
export interface ProductAvatarProps {
    /** The id attribute added to the element */
    id?: string;
    /** Component dimension set in pixels */
    size?: "small" | "default" | "large";
    /** The url logo */
    logoUrl: string;
    /** The logo background color */
    logoBgColor?: string;
    /** Alternate text for logo */
    logoAltText: string;
}
export declare const ProductAvatar: ({ size, id, logoUrl, logoBgColor, logoAltText, }: ProductAvatarProps) => JSX.Element;
