import React, { ReactNode } from 'react'; import UserLink from './user-link'; interface Props { name: ReactNode | string; src?: string; text?: string; className?: string; altText?: string; } declare const defaultProps: { className: string; }; declare type NativeAttrs = Omit, keyof Props>; export declare type UserProps = Props & typeof defaultProps & NativeAttrs; declare type MemoUserComponent

= React.NamedExoticComponent

& { Link: typeof UserLink; }; declare type ComponentProps = Partial & Omit & NativeAttrs; declare const _default: MemoUserComponent; export default _default;