/** * Plugin to add support for parsing from JavaScript. * * @this {Processor} * Processor instance. * @param {Readonly | null | undefined} [options] * Configuration (optional). * @returns {undefined} * Nothing. */ export default function rehypeParse(this: Processor, options?: Readonly | null | undefined): undefined; export default class rehypeParse { /** * Plugin to add support for parsing from JavaScript. * * @this {Processor} * Processor instance. * @param {Readonly | null | undefined} [options] * Configuration (optional). * @returns {undefined} * Nothing. */ constructor(this: Processor, options?: Readonly | null | undefined); parser: (value: string) => Program; } import type { Options } from 'esast-util-from-js'; import type { Program } from 'estree'; import type { Processor } from 'unified'; //# sourceMappingURL=index.d.ts.map