import React from 'react';
import type { LinkAttributes } from '@atlaskit/adf-schema';
import type { MarkProps } from '../types';
interface LinkProps extends LinkAttributes {
    isMediaLink?: boolean;
    onSetLinkTarget?: (url: string) => '_blank' | undefined;
    target?: string;
}
/**
 * Render an ADF link mark in renderer.
 */
export default function Link(props: MarkProps<LinkProps>): React.JSX.Element;
export {};
