import { Component } from "react"; import "./Link.scss"; declare type LinkProps = { page?: string; }; declare type LinkState = { classLink: string; }; declare class Link extends Component { state: { classLink: string; }; _onMouseEnter: () => void; _onMouseLeave: () => void; render(): JSX.Element; } export default Link;