import type { REPL } from '@kui-shell/core'; import type VFS from './VFS'; /** * Current VFS mounts * */ export declare const _currentMounts: VFS[]; type VFSProducingFunction = (repl: REPL) => VFS | VFS[] | Promise; /** * Mount a VFS * */ export declare function mount(vfs: VFS | VFSProducingFunction, placeholderMountPath?: string): void; export {};