/** * Write a virtual file to the file-system. * Ignored when `output` is not given. * * @param {Context} context * Context. * @param {VFile} file * File. * @param {Callback} next * Callback. * @returns {undefined} * Nothing. */ export function fileSystem(context: Context, file: VFile, next: Callback): undefined; import type { Context } from './index.js'; import type { VFile } from 'vfile'; import type { Callback } from 'trough'; //# sourceMappingURL=file-system.d.ts.map