/** * Seed pack CLI: template / fill / validate. * * Apply/clear live in `@angriff36/manifest/seed-pack` for runtime middleware. */ export interface SeedTemplateCliOptions { source?: string; output: string; packId?: string; version?: string; profile?: 'dev' | 'staging' | 'demo'; count?: number; entity?: string[]; dryRun?: boolean; } export declare function seedTemplateCommand(options: SeedTemplateCliOptions): Promise; export interface SeedFillCliOptions { packDir: string; source?: string; provider?: 'heuristic' | 'ollama'; model?: string; overwrite?: boolean; requireFilled?: boolean; dryRun?: boolean; } export declare function seedFillCommand(options: SeedFillCliOptions): Promise; export interface SeedValidateCliOptions { packDir: string; source?: string; requireFilled?: boolean; } export declare function seedValidateCommand(options: SeedValidateCliOptions): Promise; //# sourceMappingURL=seed-pack-cli.d.ts.map