import React from "react"; export interface LinkProps { children?: React.ReactNode; href?: string; onClick?: () => any; } declare const Link: ({ children, href, onClick }: LinkProps) => JSX.Element; export default Link;