import { type BunderstackBlueprint } from './blueprint.js'; export type GenerateBlueprintOptions = { directory: string; entry?: string; output?: string; check?: boolean; }; export type GenerateBlueprintResult = { path: string; blueprint: BunderstackBlueprint; source: string; changed: boolean; }; export declare class BlueprintCheckError extends Error { constructor(); } export declare function generateBlueprint(options: GenerateBlueprintOptions): Promise; //# sourceMappingURL=blueprint-generator.d.ts.map