import { ReactNode } from 'react'; import './Avatar.less'; interface IAvatarProps { shape?: 'round' | 'circle'; image?: string; icon?: ReactNode; children?: ReactNode; className?: string; style?: object; } export default function Avatar(props: IAvatarProps): import("react/jsx-runtime").JSX.Element; export {};