/** * Return the content of a reference without definition as plain text. * * @param {State} state * Info passed around. * @param {Extract} node * Reference node (image, link). * @returns {Array} * hast content. */ export function revert(state: State, node: Extract): Array; export type ElementContent = import("hast").ElementContent; export type Nodes = import("mdast").Nodes; export type Reference = import("mdast").Reference; export type State = import("./state.js").State;