declare const mergeDeep: (target: any, source: any) => any; declare const parseFileApiDoc: (fileName: string, secure: boolean) => any; declare const parseReducedDocs: (fileName: string) => { [name: string]: string; }; declare const autoDocEntry: (docObj: any, group: string, method: string, path: string, secure: boolean, meta?: any) => void; declare const healthDocObj: (healthPath: string, livePath: string) => { Health: { method: string; path: string; description: string; params: never[]; bodyParams: never[]; success: never[]; successExample: string; error: string; errorExample: string; }[]; }; declare const statsDocObj: (statsPath: string) => { Stats: { method: string; path: string; description: string; params: never[]; bodyParams: never[]; success: never[]; successExample: string; error: string; errorExample: string; }[]; }; declare const createHtml: (apiDocObj: any) => string; export { autoDocEntry, createHtml, healthDocObj, mergeDeep, parseFileApiDoc, parseReducedDocs, statsDocObj };