import {LinkProps} from "next/link"; import React, {AnchorHTMLAttributes} from "react"; import {Url} from "next/dist/shared/lib/router/router"; export interface CustomLinkProps extends LinkProps, Omit, keyof LinkProps> { children?: React.ReactNode type?: "button" | "submit" | "reset" typeStyle?: "primary" | "secondary" | "tertiary" link?: Url }