/**
 * Convert an idenfifer string to a camel case
 *
 * @param input The identifier string
 * @returns string in cemal case
 */
export declare function toCamelCase(input: string): string;
export default toCamelCase;
