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