import type { Node } from '@markdoc/markdoc'; import type { MarkdocResolveContext, WithOriginalAttr } from '../../../types'; /** * Resolves HTML href attributes (e.g., ``) using the existing `resolveLink` logic * and then applies the global `pathPrefix` if configured. Ensures HTML links are correct for * site deployments under a path prefix. * * @param node The Markdoc AST node (HTML tag with href attribute). * @param attributeName Attribute holding the URL ('href'). * @param pageRelativePath Relative path of the current Markdown page. * @param context The Markdoc resolution context. */ export declare function resolveHtmlHref(node: WithOriginalAttr, attributeName: string | undefined, pageRelativePath: string, context: MarkdocResolveContext): Promise; //# sourceMappingURL=resolve-html-href.d.ts.map