declare module '@japa/runner/core' { interface TestContext { fs: FileSystem; } } import type { PluginFn } from '@japa/runner/types'; import './src/assert.js'; import { FileSystem } from './src/file_system.js'; /** * The filesystem plugin for Japa */ export declare function fileSystem(options?: { basePath?: string | URL; autoClean?: boolean; }): PluginFn; export { FileSystem } from './src/file_system.js';