/// <reference types="react" />
export interface PartyAvatarProps {
    /** The id attribute added to the element */
    id?: string;
    /** The logo src */
    customSrc: string | undefined;
    /** The alt text showed instead of the image */
    customAlt: string | undefined;
    /** Logo Dimension set in pixels */
    size?: number;
}
export declare const PartyAvatar: ({ customAlt, customSrc, size, id, }: PartyAvatarProps) => JSX.Element;
