import { FC } from 'react';
import { AProps } from "../../types";
import { CitationItem } from "../../types/citation";
export interface LinkProps extends AProps {
    'aria-describedby'?: string;
    'citations'?: CitationItem[];
    'data-footnote-ref'?: boolean;
    'data-link'?: string;
    'id'?: string;
    'node'?: any;
}
declare const Link: FC<LinkProps>;
export default Link;
