/**
 * The pascalize module provides a function to convert a string to pascal case.
 *
 * @module
 */
/**
 * Converts the string to pascal case. This is primarily for converting
 * code to pascal case.
 * @param value The string to pascalize.
 * @param options The options for the function.
 * @returns A string in camel case.
 */
export declare function pascalize(value: string): string;
