/**
 * Converts a string to camel case format with special handling for known compound words
 * @param {string} string - The string to convert to camel case
 * @returns {string} The camel-cased string
 */
export declare function CamelCaseString(string: string): string;
