import React from 'react'; /*** END OF STYLE */ interface UserProps { src?: string; name?: React.ReactNode; altext?: string; children?: React.ReactNode; } interface UserLinkProps { href?: string; children?: React.ReactNode; } export declare const UserLink: React.FC; declare const defaultProps: {}; declare type NativeAttrs = Omit, keyof UserProps>; export declare type GUserProps = UserProps & typeof defaultProps & NativeAttrs; declare type UserComponent = React.ForwardRefExoticComponent & React.RefAttributes> & { Link: typeof UserLink; }; declare type ComponentProps = Partial & Omit & NativeAttrs; declare const _default: UserComponent; export default _default;