/** * Get root path or join the given paths to the root path */ export declare function rootPath(...paths: string[]): string; /** * Get src directory path or join the given paths to the src directory path */ export declare function srcPath(...paths: string[]): string; /** * Get the absolute path to the storage folder to the given path * * If no path is given, it will return the absolute path to the storage folder */ export declare function storagePath(relativePath?: string): string; /** * Get the absolute path to the uploads folder to the given path * * If no path is given, it will return the absolute path to the uploads folder */ export declare function uploadsPath(relativePath?: string): string; /** * Get the absolute path to the public folder to the given path * * If no path is given, it will return the absolute path to the public folder */ export declare function publicPath(relativePath?: string): string; /** * Get the absolute path to the cache folder to the given path * * If no path is given, it will return the absolute path to the cache folder */ export declare function cachePath(relativePath?: string): string; /** * App path */ export declare function appPath(relativePath?: string): string; /** * Console path */ export declare function consolePath(relativePath?: string): string; /** * Get a temp path */ export declare function tempPath(relativePath?: string): string; export declare function sanitizePath(filePath: string): string; /** * Warlock path * PLEASE DO NOT add any files in this directory as it may be deleted */ export declare function warlockPath(...path: string[]): string; /** * Get config directory path */ export declare function configPath(...path: string[]): string; //# sourceMappingURL=paths.d.ts.map