import { URI } from "langium"; type Tmpdir = { Path: string; [Symbol.asyncDispose]: () => Promise; }; /** * Creates a global temporary folder * @returns A Tmpdir of the temporary folder */ export declare function MkdirTemp(): Promise; /** * Creates the global temporary cache folder * @returns An URI of the temporary cache folder */ export declare function TempCache(): Promise; export {};