import React from 'react'; import type { CSSProperties, ReactNode } from 'react'; export interface IProps { name?: string; icon?: ReactNode; src?: string; style?: CSSProperties; } declare const Avatar: (props: IProps) => React.JSX.Element; export default Avatar;