/** * Transforms a string to camel case variable name. * @returns The camel case string (e.g. '123 hello world 234?' -> 'helloWorld234') */ export declare function transformToCamelCaseVarName(input: string): string;