/** * Creates a human readable text from camel case * @param {string} value the camel case string (example "caseId") * @param {boolean} shouldCapitalizeEvery OPTIONAL should every subsequest word be capitalized? Defaults to false * @returns the a capitalised human readable string (example "Case Id" or "Case id") */ export declare function readableFromCamelCase(value: string, shouldCapitalizeEvery?: boolean): string;