import * as React from "react"; export declare const ShapeTuple: ["circle", "square"]; declare type ShapeType = typeof ShapeTuple[number]; export interface AvatarProps { /** specify icon="search" or icon={IconComponent} */ icon: React.ReactNode | string; /** circle or square */ shape?: ShapeType; /** size of the svg icon to render */ size?: number; /** color of the svg icon to render */ color?: string; /** color of the wrapper */ backgroundColor?: string; /** style of the wrapper around SVG */ style?: React.CSSProperties; } export declare const Avatar: ({ icon, shape, size, color, backgroundColor, style }: AvatarProps) => JSX.Element; export default Avatar;