import * as MDAST from 'mdast'; import type { Node } from 'unist'; import { H } from '../index'; export declare const reference: { footnoteReference: typeof footnoteReference; footnote: typeof footnote; imageReference: typeof imageReference; linkReference: typeof linkReference; }; declare function footnoteReference(h: H, node: MDAST.FootnoteReference & Node): import("hast-format").Element; declare function footnote(h: H, node: MDAST.Footnote & Node): import("hast-format").Element; declare function imageReference(h: H, node: MDAST.ImageReference & Node): Node[] | import("hast-format").Element; declare function linkReference(h: any, node: any): any; export {};