import React from "react"; import { AvatarProps as MuiAvatarProps } from "@material-ui/core/Avatar"; import { Theme } from "../Styles"; import { WrappedMuiComponent } from "../utils/types"; declare const styles: (theme: Theme) => Record<"square" | "img" | "root" | "colorDefault", import("@material-ui/core/styles/withStyles").CSSProperties>; export interface AvatarProps extends WrappedMuiComponent { variant?: "default" | "round" | "square"; } declare const _default: React.ComponentType & import("@material-ui/core/styles/withStyles").StyledComponentProps<"square" | "img" | "root" | "colorDefault">>; export default _default;