import { SandboxOptions } from '../types'; export declare const useSandboxExplorer: (options: SandboxOptions) => { /** * Computed ref containing a function to determine whether an entity (directory or file) should be * hidden in the file explorer. */ hidden: import("vue").ComputedRef; /** * Computed ref containing a function to determine whether an entity (directory or file) should be * marked as readonly in the file explorer and editor tabs. */ readonly: import("vue").ComputedRef; /** * Computed ref containing a function to determine whether changing an entity (directory or file) should * trigger the re-installation of dependencies and re-bootstrapping. */ reinstall: import("vue").ComputedRef; };