import type { Root } from 'hast';
import type { Transformer } from 'unified';
import type { IMdTransformerOptions } from '.';
type IRehypeLinkOptions = Pick<IMdTransformerOptions, 'fileAbsPath' | 'routes'>;
export default function rehypeLink(opts: IRehypeLinkOptions): Transformer<Root>;
export {};
