export declare const CASINGS: { readonly snakeCase: "snakeCase"; readonly camelCase: "camelCase"; readonly pascalCase: "pascalCase"; readonly kebabCase: "kebabCase"; readonly noCase: "noCase"; }; export declare function toNoCase(input?: string | number | null): string; export declare function toKebabCase(input?: string | number | null): string; export declare function toSnakeCase(input?: string | number | null): string; export declare function toCamelCase(input?: string | number | null): string; export declare function toPascalCase(input?: string | number | null): string; //# sourceMappingURL=casing.d.ts.map