import { Theme } from "@material-ui/core";
export declare type AvatarProps = {
    avatarStyle?: any;
    className?: string;
    height?: number;
    image?: object | string;
    imageAlt?: string;
    palette?: any;
    theme?: Theme;
    title: string;
    type?: string;
    variant?: "circle" | "square" | "rounded";
    width?: number;
};
declare const _default: ({ width, height, image, imageAlt, theme, palette, title, type, avatarStyle, variant, ...rest }: AvatarProps) => JSX.Element;
export default _default;
