/** * Template renderer — token substitution for scaffold templates. */ import type { ScaffoldTokens } from './types'; export declare function renderTemplate(content: string, tokens?: Partial): string; export declare function slugToPackageName(slug: string): string; export declare function slugToPascalCase(slug: string): string;