import type { Node } from "./builder"; /** * Builder-element for an custom anchor * @param value - Content of this element * @returns A markdown node * @category Builder * @example * ```ts * import { define, anchor } from "@ogs-gmbh/markdown"; * * const markdown = define( * anchor("my-custom-anchor") * ); * * console.assert( * markdown.toString() * ); * ``` * * @see https://vitepress.dev/guide/markdown#custom-anchors * @since 1.0.0 * @author Simon Kovtyk */ declare function anchor(value: Node | string): Node; export { anchor }; //# sourceMappingURL=anchor.d.ts.map