schema.d.ts
export interface LibraryGeneratorSchema {
  name: string;
  tags?: string;
  layer: 'core' | 'feature' | 'block' | 'page' | 'app';
}