/** * Supported casing formats for identifier transformations. */ export type Casing = "camelCase" | "kebab-case" | "PascalCase"; /** * Convert an input string into the requested casing format. */ export declare const toCasing: (value: string, format: Casing) => string; /** * Extract the final filename segment without extension. */ export declare const filenameStem: (filePath: string) => string; //# sourceMappingURL=casing.d.ts.map