import { LinkProps as ChakraLinkProps } from "@chakra-ui/react"; import { LinkProps as RouterLinkProps } from "react-router-dom"; import React from "react"; export declare type LinkProps = Omit & { to: string; children: string | React.ReactNode; } & ChakraLinkProps; export declare const Link: ({ to, children, ...restProps }: LinkProps) => JSX.Element;