/**
 * Return a JSON representation of a book with a specific file
 *
 * @param {Book} output
 * @param {Page} page
 * @return {Object}
 */
declare function encodeBookWithPage(book: any, page: 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 encodeBookWithPage;
//# sourceMappingURL=encodeBookWithPage.d.ts.map