import { jsx } from '@emotion/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; } export default function Link(props: MarkProps): jsx.JSX.Element; export {};