/** * --- * category: utilities/utils * --- * Converts a hyphenated or camel cased string to pascal case * * Example inputs: * - 'foo-bar' * - 'baz-qux' * * Example outputs: * - 'FooBar' * - 'BazQux' * * @module pascalize * @param {String} str * @returns {String} Returns pascal cased string */ declare function pascalize(str: string): string | undefined; export default pascalize; export { pascalize }; //# sourceMappingURL=pascalize.d.ts.map