export declare const BLUEPRINT_FOLDER = "001_BLUEPRINT"; export declare const BLUEPRINT_IGNORED_DIRS: Set; export interface BlueprintDirectoryEntry { name: string; path: string; } export interface BlueprintBoxListing { sourceRoot: string; path: string; folders: BlueprintDirectoryEntry[]; files: BlueprintDirectoryEntry[]; } export declare function normalizeBlueprintPath(relPath: string): string; export declare function safeResolveBlueprintPath(sourceRoot: string, relPath: string): string | null; export declare function isBlueprintIgnoredDir(name: string): boolean; export declare function listBlueprintBox(sourceRoot: string, relPath: string): BlueprintBoxListing; //# sourceMappingURL=blueprint.d.ts.map