import type { JSX } from 'react';
type Props = {
    hasLinkAttributes?: boolean;
};
export default function LinkPlugin({ hasLinkAttributes }: Props): JSX.Element;
export {};
