/** * Splits a camel-cased string apart and capitalizes each word * * @since v0.0.1 * @category String * @param {string} value - The camel-cased string to split * @param {string | RegExp} match - The string or RegExp to match for removal * @returns {string} * @example * remove('TheQuickBrownFox') //=> 'The Quick Brown Fox' * remove('theQuickBrownFox') //=> 'The Quick Brown Fox' */ export declare const splitCamelCase: (value: string) => string;