export declare const scalarValue: Record; /** * Convert PascalCase to snake_case. * Used for idiomatic file naming in Python and Go. */ export declare function toSnakeCase(str: string): string; /** * Convert PascalCase to kebab-case. * Used for idiomatic file naming in TypeScript. */ export declare function toKebabCase(str: string): string; export declare const getCombinations: (arrays: any[][]) => any[][];