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