/** Convert a relative path into an absolute path within the current environment data directory. */ export declare const envDataPath: (...file: string[]) => string; /** Convert a relative file path into an absolute file path within the current root environment directory. */ export declare const getAbsoluteDL: (subPath: string) => string; /** Convert a relative path into an absolute path within the globally-shared config/data directory. */ export declare const sharedPath: (...file: string[]) => string; /** Path to the shared static assets directory. Swaps automaticlly between packaged and sourcecode file locations. */ export declare const assetPath: (...file: string[]) => string; /** * Build all the parent directories required to make this file valid. */ export declare const mkParents: (file: string) => Promise;