/**
 * Helper function to convert a camel case string to formatted title
 * @param camelString string
 * @param capitalizeAll boolean if true, all words in the title will be capitalized will be uppercase
 * @returns string formatted as title
 */
export declare function makeTitle(camelString: string, capitalizeAll?: boolean): string;
