/** * Represents Shake report file. */ declare class ShakeFile { name: string; path: string; /** * Used to create new shake file. * @param filePath file path * @param fileName file name * @returns {ShakeFile} new shake file */ static create(filePath: string, fileName?: string): ShakeFile; static _parseFilePath(path: string): any; } export default ShakeFile; //# sourceMappingURL=ShakeFile.d.ts.map