export declare function getTempPath(): string; export declare function saveFile(file: string): void; export declare function saveFileWithName(file: string, name: string, filePath: string): void; export declare function restoreFile(file: string): void; export declare function restoreFileWithName(file: string, name: string, filePath: string): void; export declare function toNerfDart(uri: string): string; export declare function getProjectAndFeedIdFromInputParam(inputParam: string): any; export declare function getProjectAndFeedIdFromInput(feedProject: string): any; export declare enum LogType { debug = 0, warning = 1, error = 2 } /** * Logs the error instead of throwing. */ export declare function logError(error: any, logType?: LogType): void;