import { LinkProps } from '@/common-types'; import { AnchorHTMLAttributes, PropsWithChildren } from 'react'; export type CustomLinkProps = Omit & PropsWithChildren & AnchorHTMLAttributes; /** * Custom Link component which use nextjs `Link` component. * * **Note**: * We often need to wrap elements with a link. This is why we have decided * to use `children` instead of `label` with this component. */ export declare function CustomLink({ children, href, openNewTab, ...props }: CustomLinkProps): import("react/jsx-runtime").JSX.Element;