/** * Shared string utilities for CLI commands and MCP tools. */ /** Convert a name to a URL-safe slug (preserves case). */ export declare function toSlug(name: string): string; /** Convert a slug to a PascalCase component name. */ export declare function toComponentName(slug: string): string; /** Safely extract an error message from an unknown thrown value. */ export declare function formatError(error: unknown): string; //# sourceMappingURL=string.d.ts.map