import React from "react"; import type { Location } from "history"; export interface Props { children: React.ReactNode; to?: string | (() => void) | Location; className?: string; style?: React.CSSProperties; newTab?: boolean; replace?: boolean; disabled?: boolean; } export declare const Link: ({ to, children, newTab, replace, className, disabled, style }: Props) => React.JSX.Element;