import { type Inferno, LinkedEvent, type VNode } from 'inferno'; import type { Location } from 'history'; export interface ILinkProps { children?: any; onClick?: ((event: MouseEvent) => void) | LinkedEvent | null; target?: string; className?: string; replace?: boolean; to?: string | Partial; innerRef?: any; } /** * The public API for rendering a history-aware . */ export declare function Link(props: ILinkProps & Inferno.LinkHTMLAttributes, context: any): VNode;