import type { Node } from '@markdoc/markdoc'; import type { MarkdocResolveContext, WithOriginalAttr } from '../../../types'; /** * Resolves native Markdown links/images (e.g., `[]()` or `![]()`) using `resolveLink` and then applies the global * `pathPrefix` if configured. Ensures links are correct for site deployments under a path prefix. * * @param node The Markdoc AST node (link or image). * @param attributeName Attribute holding the URL ('href' or 'src'). * @param pageRelativePath Relative path of the current Markdown page. * @param context The Markdoc resolution context. */ export declare function resolveNativeMdLink(node: WithOriginalAttr, attributeName: string, pageRelativePath: string, context: MarkdocResolveContext): Promise; //# sourceMappingURL=resolve-native-md-link.d.ts.map