import React from 'react'; interface Props { href?: string; className?: string; } declare type NativeAttrs = Omit, keyof Props>; export declare type UserLinkProps = Props & NativeAttrs; declare const UserLink: React.ForwardRefExoticComponent>; export default UserLink;