import type { Casing, ErrorSink, Token } from "./types.js"; /** Registers an error if the given token does not match the expected casing. */ export declare function validate(name: Token, expected: "lower_underscore" | "UpperCamel" | "UPPER_UNDERSCORE", errors: ErrorSink): void; export declare function convertCase(text: string, source: Casing, target: Casing): string; /** Returns a new string with the first letter of `name` capitalized. */ export declare function capitalize(name: string): string; //# sourceMappingURL=casing.d.ts.map