import type { ModuleNames } from '../types.js'; /** * Validates that the input is in kebab-case format. * @param name - The module name to validate * @returns true if valid kebab-case */ export declare function isValidKebabCase(name: string): boolean; /** * Transforms a kebab-case module name into all required naming formats. * @param kebabCase - The module name in kebab-case (e.g., "auto-rag") * @returns All naming variations */ export declare function transformModuleName(kebabCase: string): ModuleNames; //# sourceMappingURL=nameTransform.d.ts.map