/** * Convert a string to camelCase * * @note * This isn't fully generic/bullet proof, but it works for our use case atm * * @example * ```ts * camelCase("hello_world") // #=> helloWorld * camelCase("hello-world") // #=> helloWorld * camelCase("hello world") // #=> helloWorld * camelCase("helloWorld") // #=> helloWorld * camelCase("HelloWorld") // #=> helloWorld * ``` */ declare function camelCase(value: string): string; /** * Convert a path to camelCase * * @example * ```ts * camelCasePath("hello_world/helloWorld/hello-world") // #=> helloWorld/helloWorld/helloWorld * ``` */ declare function camelCasePath(filepath: string): string; export { camelCase, camelCasePath, };