import { LinkProps } from "react-router-dom"; import React from 'react'; interface Iprops extends LinkProps { themecolor?: string; active?: (active: boolean) => void; } export default function CustomLink(props: Iprops): React.JSX.Element; export {};