/** * Converts a string to PascalCase. * Splits on whitespace, hyphens, or underscores. */ export declare function toPascalCase(str: string): string;