/** * Encode an output to JSON * * @param {Output} * @return {Object} */ declare function encodeOutputToJson(output: any): { summary: { file: { path: any; mtime: any; type: any; }; parts: any; }; glossary: { file: { path: any; mtime: any; type: any; }; entries: any; }; readme: { file: { path: any; mtime: any; type: any; }; }; config: any; languages: { file: { path: any; mtime: any; type: any; }; list: any; }; gitbook: { version: any; time: Date; }; honkit: { version: any; time: Date; }; book: any; }; export default encodeOutputToJson; //# sourceMappingURL=encodeOutput.d.ts.map