/** * Convert a string to PascalCase * * @note * This isn't fully generic/bullet proof, but it works for our use case atm * * @example * ```ts * pascalCase("hello_world") // #=> HelloWorld * pascalCase("hello-world") // #=> HelloWorld * pascalCase("hello world") // #=> HelloWorld * pascalCase("helloWorld") // #=> HelloWorld * pascalCase("HelloWorld") // #=> HelloWorld * ``` */ declare function pascalCase(value: string): string; /** * Convert a path to PascalCase * * @example * ```ts * pascalCasePath("hello_world/helloWorld/hello-world") // #=> HelloWorld/HelloWorld/HelloWorld * ``` */ declare function pascalCasePath(filepath: string): string; export { pascalCase, pascalCasePath, };