import type { VFile } from 'vfile'; import type { Link } from 'myst-spec-ext'; import type { LinkTransformer, MystXRefs, ResolvedExternalReference } from './types.js'; export declare function removeMystPrefix(uri: string, vfile?: VFile, link?: Link, source?: string): string; export declare class MystTransformer implements LinkTransformer { protocol: string; mystXRefsList: { key: string; url: string; value: MystXRefs; }[]; constructor(references: ResolvedExternalReference[]); test(uri?: string): boolean; transform(link: Link, file: VFile): boolean; } //# sourceMappingURL=myst.d.ts.map