import React from "react";
import { Theme } from "@material-ui/core";
export declare type ProfileAvatarProps = {
    avatar?: any;
    avatarColor: string;
    children: React.ReactNode;
    height: number;
    image: any;
    imageOnly?: boolean;
    tagPalette: string;
    tagText: string;
    theme: Theme;
    title: string;
    type: string;
    width: number;
};
declare const _default: ({ width, height, title, avatar, image, avatarColor, tagText, tagPalette, type, imageOnly, ...props }: ProfileAvatarProps) => JSX.Element;
export default _default;
