import {CamelCase} from './camel-case';
/**
Converts a string literal to pascal-case.
@example
```
import {PascalCase} from 'type-fest';
// Simple
const someVariable: PascalCase<'foo-bar'> = 'FooBar';
// Advanced
type PascalCaseProps = {
	[K in keyof T as PascalCase]: T[K]
};
interface RawOptions {
	'dry-run': boolean;
	'full_family_name': string;
	foo: number;
}
const dbResult: CamelCasedProps = {
	DryRun: true,
	FullFamilyName: 'bar.js',
	Foo: 123
};
```
*/
export type PascalCase = CamelCase extends string
	? Capitalize>
	: CamelCase;