import type { Link } from 'myst-spec-ext'; import type { VFile } from 'vfile'; import type { LinkTransformer } from './types.js'; export declare class WikiTransformer implements LinkTransformer { protocol: string; wikiUrl: string; lang?: string; formatsText: boolean; constructor(opts?: { url?: string; lang?: string; }); test(uri?: string): boolean; pageName(uri: string): { page: string; wiki: string; lang?: string; } | undefined; transform(link: Link, file: VFile): boolean; } //# sourceMappingURL=wiki.d.ts.map