/**
 * A static class of constants for temp directories, to be used widely.
 */
export default class Temp {
    private static globalTempDir;
    static getTempDir(): string;
    static setTempDir(globalTempDir: string): void;
}
