/** * Split string by spaces and join to camelCase: 'My camel Case string' to 'myCamelCaseString' */ export default function toCamelCase(this: string): string;