/**
 * @license
 * Copyright (c) 2016, Contributors
 * SPDX-License-Identifier: ISC
 */
export declare function camelCase(str: string): string;
export declare function decamelize(str: string, joinString?: string): string;
export declare function looksLikeNumber(x: null | undefined | number | string): boolean;
