import type { AnchorHTMLAttributes } from 'react'; import type { To } from '../react-router'; export interface LinkProps extends Omit, 'href'> { replace?: boolean; state?: any; to: To; reloadDocument?: boolean; }