/** * Small utilities for string transformations used across the project. */ export declare function pascal(s: string): string; export declare function camel(s: string): string; export declare function kebab(s: string): string; /** * Basic pluralization helper. * - Supports a small irregular map and common english plural rules. * - Good enough for simple method naming like `listProducts` / `listCategories`. */ export declare function pluralize(s: string): string;