import React, { ReactNode } from 'react'; interface Props { name: ReactNode | string; src?: string; text?: string; className?: string; altText?: string; } type NativeAttrs = Omit, keyof Props>; export type UserProps = Props & NativeAttrs; declare const User: React.ForwardRefExoticComponent>; export default User;