import React from 'react'; import { CSS } from '../theme/stitches.config'; interface Props { href?: string; } declare type NativeAttrs = Omit, keyof Props>; export declare type UserLinkProps = Props & NativeAttrs & { css?: CSS; }; declare const MemoUserLink: React.MemoExoticComponent>>; export default MemoUserLink;