import { WasmFs } from "@wasmer/wasmfs"; import CommandOptions from "./command/command-options"; export declare type CallbackCommand = (args: string[], stdin: string) => Promise; declare type FetchCommandFunction = (options: { args: Array; env?: { [key: string]: string; }; }) => Promise; export default class WasmTerminalConfig { fetchCommand: FetchCommandFunction; processWorkerUrl?: string; wasmFs: WasmFs; constructor(config: any); } export {};