/**
 * Converts a camelCase string to a human-readable sentence
 *
 * @param value - The provided value
 */
export declare const camelCaseToSentence: (value: string) => string;
