/**
 * Converts a lower kebab-case string to a camelCase string.
 *
 * @category Helper
 */
export declare function fromKebabCase(str: string): string;
