export declare function scalarString(value: unknown): string | undefined; export declare function routeFromDescription(description: string, kind: string): string; /** Slugify a raw name/path segment into a memory-doc-safe identity: lowercase, * `.md` stripped, path separators normalized to `/`, each segment reduced to * `[a-z0-9._-]`. Shared by the skills lane (bundle names) and the * project-guidance lane (project/subdir labels). */ export declare function normalizedName(raw: string): string;