/** * Converts a string to PascalCase. * @param {string} string_ - Input string * @returns {string} PascalCase string * @example * pascalCase("hello-world"); // "HelloWorld" * pascalCase("hello_world"); // "HelloWorld" */ export declare const pascalCase: (string_: string) => string;