/** * Get the absolute path to the wanted file or directory, relative from the current one. * @param path - The relative path to the file or directory. * @returns The absolute path to the file or directory. */ export declare const getAbsolutePath: (fileName?: string) => string; /** * Create a new directory. * @param dirName - The name of the directory to create, relative to the current file. * @returns The absolute path to the created directory. */ export declare const createPath: (dirName: string) => Promise;