export type StarterTemplate = 'minimal' | 'saas' | 'marketplace' | 'internal-tool' | 'api'; export interface TemplateInfo { readonly name: StarterTemplate; readonly description: string; readonly files: ReadonlyArray<{ path: string; content: string; }>; } export declare function listStarterTemplates(): readonly TemplateInfo[]; export declare function getStarterTemplate(name: string, productName: string): TemplateInfo | null; //# sourceMappingURL=starters.d.ts.map