/// export interface DenoExecOptions { /** * default is workspaceRoot **/ cwd?: string; /** * custom env vars to set. default is process.env **/ env?: Record; stdio?: 'inherit' | 'pipe'; } export declare function runDeno(args: any[], options?: DenoExecOptions): import("child_process").ChildProcess; export declare function assertDenoInstalled(): void;