import type { CreateSandboxOptions, SandboxConfig, SandboxFilesystem, SandboxInstance } from './types'; export declare function createSandbox(config: SandboxConfig, options?: CreateSandboxOptions): Promise; export declare function createFilesystem(sandbox: undefined): undefined; export declare function createFilesystem(sandbox: SandboxInstance): SandboxFilesystem;