import { default as Link } from 'next/link'; import { default as React } from 'react'; import { AnchorProps } from './anchor'; declare const LinkBehaviour: React.ForwardRefExoticComponent, keyof import('next/link').LinkProps> & import('next/link').LinkProps & { children?: React.ReactNode | undefined; } & React.RefAttributes, "ref"> & React.RefAttributes>; declare const CustomAnchor: (props: AnchorProps) => import("react/jsx-runtime").JSX.Element; export { LinkBehaviour, CustomAnchor };