/**
 * Convert an identifier string to pascal case
 *
 * @param input The identifer string
 * @returns the identifier in pascal case
 */
export declare function toPascalCase(input: string): string;
export default toPascalCase;
