/** * Create smart processors to handle different formats. * * @param {Readonly | null | undefined} [compileOptions] * Configuration (optional). * @return {FormatAwareProcessors} * Smart processor. */ export function createFormatAwareProcessors(compileOptions?: Readonly | null | undefined): FormatAwareProcessors; /** * Result. */ export type FormatAwareProcessors = { /** * Extensions to use. */ extnames: ReadonlyArray; /** * Smart processor, async. */ process: Process; }; /** * Smart processor. */ export type Process = (vfileCompatible: Compatible) => Promise; import type { CompileOptions } from '../compile.js'; import type { Compatible } from 'vfile'; import type { VFile } from 'vfile'; //# sourceMappingURL=create-format-aware-processors.d.ts.map