/** * Turn an arbitrary string into a filesystem- and URL-safe lowercase slug. * * Collapses every run of non-alphanumeric characters into a single hyphen, * trims leading/trailing hyphens, and caps the length. Returns `fallback` * when the input slugifies to the empty string. * * Used as the stable dedup + registry key for prompts. (Distinct from the * project-folder slug in `wstack-paths.ts`, which has its own `'project'` * fallback and shorter cap.) */ export declare function slugify(name: string, fallback?: string, maxLen?: number): string; //# sourceMappingURL=slug.d.ts.map