import { Router } from 'express'; export interface BlueprintFolder { name: string; path: string; hasChildren: boolean; hasDoc: boolean; } export declare function slugifyCategory(name: string): string; export interface BlueprintResponse { sourceRoot: string; path: string; name: string; folders: BlueprintFolder[]; } export declare function blueprintRouter(docsPath: string): Router; //# sourceMappingURL=blueprint.d.ts.map