interface IconPropTypes {
    avatar_url: string;
    size?: "small" | "medium" | "large";
    onClickIcon?: () => void;
    className?: "circle-shape" | "rect-shape";
}
export declare function ProfileIcon({ avatar_url, size, onClickIcon }: IconPropTypes): import("react/jsx-runtime").JSX.Element;
export declare function OrganizationIcon({ avatar_url, size, onClickIcon }: IconPropTypes): import("react/jsx-runtime").JSX.Element;
export {};
